Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Nov 14, 2023
1 parent d6ae5e7 commit d4892a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit_test/seqr/test_seqr_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_open_source_values(self):
self.assertEqual(p.stdout.count('kind: CronJob'), 0)

def test_values(self):
p = subprocess.run(DEFAULT_ARGS, capture_output=True, text=True) # NB: text=True here to avoid opening the output in binary mode
p = subprocess.run(DEFAULT_ARGS, capture_output=True, text=True)
p.check_returncode()
self.assertIn('kind: Deployment\nmetadata:\n name: seqr', p.stdout)
self.assertIn('echo starting CronJob test-cron-1;', p.stdout)
Expand Down

0 comments on commit d4892a0

Please sign in to comment.