Skip to content

Commit 59817ac

Browse files
committed
Use yarl instead of grpcio in tests to avoid dependabot warnings
1 parent 31a6241 commit 59817ac

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: test/lib/test_licensefinder.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def test_execution_python():
2626
)
2727

2828
assert len(result) == 2
29-
assert result[0].name == "grpcio"
30-
assert result[0].version == "1.53.0"
29+
assert result[0].name == "yarl"
30+
assert result[0].version == "1.9.4"
3131
assert result[0].licenses == ["Apache 2.0"]
3232
assert result[1].name == "six"
3333
assert result[1].version == "1.16.0"

Diff for: testbench/multilang/python-proj/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
grpcio==1.53.0
1+
yarl==1.9.4
22
coverage2clover
33
coveragepy-lcov
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
grpcio==1.53.0
1+
yarl==1.9.4
22
six==1.16.0
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
grpcio==1.53.0
1+
yarl==1.9.4
22
six==1.16.0

0 commit comments

Comments
 (0)