-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from sw360/105-be-more-flexible-at-find-sources
105 be more flexible at find sources
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ------------------------------------------------------------------------------- | ||
# Copyright (c) 2021-2023 Siemens | ||
# Copyright (c) 2021-2024 Siemens | ||
# All Rights Reserved. | ||
# Author: [email protected], [email protected] | ||
# | ||
|
@@ -703,7 +703,7 @@ def test_upload_file_allow_git_binary_upload(self) -> None: | |
body="content") | ||
responses.add( | ||
responses.POST, SW360_BASE_URL + 'releases/06a6e7/attachments', | ||
match=[upload_matcher("babel.git")]) | ||
match=[upload_matcher("babel.git", "BINARY")]) | ||
|
||
self.app.download = True | ||
item = Component( | ||
|
@@ -1171,4 +1171,4 @@ def test_update_release_attachment_rename(self) -> None: | |
if __name__ == '__main__': | ||
APP = CapycliTestBomCreate() | ||
APP.setUp() | ||
APP.test_update_release_attachment() | ||
APP.test_upload_file_allow_git_binary_upload() |