Skip to content

Commit

Permalink
Fix #214: Update representation of interpreter in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Feb 14, 2024
1 parent 573f741 commit 1c08845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def test_script_run(self):
self.assertIn(b'<H3>Current Working Directory:</H3>', stdout)
self.assertIn(os.getcwd().encode('utf-8'), stdout)
else:
self.assertIn(b'[Interpreter(id=0, isolated=None)]', stderr)
self.assertIn(b'[Interpreter(0)]', stderr)
self.assertEqual(p.returncode, 1)

@unittest.skipUnless(os.name == 'posix', 'Test only valid for POSIX')
Expand Down

0 comments on commit 1c08845

Please sign in to comment.