Skip to content

Commit

Permalink
Fix typo ->
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Bentvelsen committed Jan 4, 2024
1 parent d181877 commit 51fea81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/buildcmd/test_build_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,7 @@ def test_function_build_succeeds_with_referenced_layer(self):
self.assertEqual(command_result.process.returncode, 0)
self.assertNotIn("No BuildArchitecture specifed", str(command_result.stderr))

@parameterized.expand([("python3.7", False, "LayerOne"), ("python3.7", "use_container", "LayerOne")])
@parameterized.expand([("python3.8", False, "LayerOne"), ("python3.8", "use_container", "LayerOne")])
def test_build_with_missing_buildarchitecture(self, runtime, use_container, layer_identifier):
if use_container and (SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD):
self.skipTest(SKIP_DOCKER_MESSAGE)
Expand All @@ -1757,7 +1757,7 @@ def test_build_with_missing_buildarchitecture(self, runtime, use_container, laye
)
command_result = run_command(cmdlist, cwd=self.working_dir)
self.assertEqual(command_result.process.returncode, 0)
self.assertIn("No BuildArchitecture specifed", str(command_result.stderr))
self.assertIn("No BuildArchitecture specified", str(command_result.stderr))

@parameterized.expand([("python3.7", False), ("python3.7", "use_container")])
def test_build_function_and_layer(self, runtime, use_container):
Expand Down

0 comments on commit 51fea81

Please sign in to comment.