Skip to content

Commit cc1336d

Browse files
authored
chore: update integration tests dependencies (#323)
1 parent 9d37cc8 commit cc1336d

File tree

6 files changed

+75
-13
lines changed

6 files changed

+75
-13
lines changed

tests/integration/workflows/go_dep/data/src/failed-remote/Gopkg.lock

Lines changed: 67 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[[constraint]]
2-
name = "not-really-a-git-repo.com/pkg/log"
3-
version = "1.0.0"
2+
name = "github.com/aws/aws-sdk-go-v2"
3+
version = "1.12.99"
44

55
[prune]
66
go-tests = true
77
unused-packages = true
8+

tests/integration/workflows/nodejs_npm/test_nodejs_npm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def test_fails_if_npm_cannot_resolve_dependencies(self):
133133
runtime=self.runtime,
134134
)
135135

136-
self.assertIn("No matching version found for [email protected]_EXISTENT", str(ctx.exception))
136+
self.assertIn("No matching version found for [email protected]", str(ctx.exception))
137137

138138
def test_builds_project_with_remote_dependencies_without_download_dependencies_with_dependencies_dir(self):
139139
source_dir = os.path.join(self.TEST_DATA_FOLDER, "npm-deps")

tests/integration/workflows/nodejs_npm/testdata/broken-deps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"author": "",
88
"license": "APACHE2.0",
99
"dependencies": {
10-
"minimal-request-promise": "0.0.0-NON_EXISTENT"
10+
"aws-sdk": "2.997.999"
1111
}
1212
}

tests/integration/workflows/python_pip/test_python_pip.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ def test_must_fail_to_resolve_dependencies(self):
164164

165165
# In Python2 a 'u' is now added to the exception string. To account for this, we see if either one is in the
166166
# output
167-
message_in_exception = "Invalid requirement: 'adfasf=1.2.3'" in str(
167+
message_in_exception = "Invalid requirement: 'boto3=1.19.99'" in str(
168168
ctx.exception
169-
) or "Invalid requirement: u'adfasf=1.2.3'" in str(ctx.exception)
169+
) or "Invalid requirement: u'boto3=1.19.99'" in str(ctx.exception)
170170
self.assertTrue(message_in_exception)
171171

172172
def test_must_log_warning_if_requirements_not_found(self):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
adfasf=1.2.3
1+
boto3=1.19.99

0 commit comments

Comments
 (0)