Skip to content

Commit

Permalink
Edit test #4
Browse files Browse the repository at this point in the history
  • Loading branch information
MauroDruwel committed May 19, 2023
1 parent be250cf commit f8d6e6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_execute_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def test_execute_python_file(python_test_file: str, random_string: str):
assert result == f"Hello {random_string}!\n"

def test_execute_python_file_args(python_test_file_args: str, random_string: str):
random_args = 'Hello world'
result = sut.execute_python_file(python_test_file_args, random_args)
assert result == f"{random_args}\n"
#random_args = 'Hello world'
result = sut.execute_python_file(python_test_file_args, "Hello world")
assert result == f"Hello world\n"


def test_execute_python_file_invalid():
Expand Down

0 comments on commit f8d6e6c

Please sign in to comment.