Skip to content

Commit ddc0c6c

Browse files
committed
Fix potential syntax error in unit test
1 parent 8ffcddd commit ddc0c6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/testwrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class SubmitBase(unittest.TestCase):
6161
def setUp(self):
6262
self.jt = jt = Session.createJobTemplate()
6363
jt.remoteCommand = 'python'
64-
jt.args = ['-c', "print 'hello from python!'"]
64+
jt.args = ['-c', "print('hello from python!')"]
6565
if hasattr(self, 'jt_tweaks'):
6666
self.jt_tweaks()
6767
self.jid = Session.runJob(jt)

0 commit comments

Comments
 (0)