Skip to content

Commit

Permalink
Fixing unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-serebryakov committed Jul 24, 2023
1 parent ea61324 commit 87d375f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TestDockerRunner(TestCase):
def _check_inspect_output(self, info: t.Dict) -> None:
self.assertIsInstance(info, dict)
self.assertIn("hash", info)
self.assertTrue(info["hash"].startswith("sha256:"))
self.assertFalse(info["hash"].startswith("sha256:"))

@staticmethod
def noop(*args, **kwargs) -> None:
Expand Down

0 comments on commit 87d375f

Please sign in to comment.