Skip to content

Commit

Permalink
Update return code in test
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettjstevens committed Sep 20, 2024
1 parent 723e5f8 commit 5983d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apollo-cli/test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ def testAssemblyChecks(self):

# Test non-existant assembly
p = shell(f"{apollo} assembly check {P} -a non-existant", strict=False)
self.assertEqual(p.returncode, 2)
self.assertEqual(p.returncode, 1)
self.assertTrue("non-existant" in p.stderr)

# Test non-existant check
Expand Down

0 comments on commit 5983d96

Please sign in to comment.