Skip to content

Commit b5dc117

Browse files
authored
Fix failing test in test_end_to_end.py
1 parent f99e196 commit b5dc117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/local_lambda/test_end_to_end.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_env_var_with_equal_sign(self, arch, port):
100100

101101
r = self.create_container_and_invoke_function(cmd, port)
102102

103-
self.assertEqual(b'"5=5"', r.content)
103+
self.assertEqual(b'"4=4"', r.content)
104104

105105
@parameterized.expand([("x86_64", "8001"), ("arm64", "9001"), ("", "9051")])
106106
def test_two_invokes(self, arch, port):

0 commit comments

Comments
 (0)