Skip to content

Commit

Permalink
Fix testing with Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanderlee committed Sep 28, 2023
1 parent 8b2e29f commit 5271a3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class BatchServletSpec extends BaseSessionServletSpec[BatchSession, BatchRecover
try {
writer.write(
"""
|print "hello world"
|print("hello world")
""".stripMargin)
} finally {
writer.close()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class BatchSessionSpec
try {
writer.write(
"""
|print "hello world"
|print("hello world")
""".stripMargin)
} finally {
writer.close()
Expand Down

0 comments on commit 5271a3a

Please sign in to comment.