Skip to content

Commit

Permalink
edit args test #2
Browse files Browse the repository at this point in the history
  • Loading branch information
MauroDruwel committed May 18, 2023
1 parent 616a6da commit 5fe08db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 = random_string + " " + random_string
random_args = "Hello world"
result = sut.execute_python_file(python_test_file_args, random_args)
assert result == f"{random_args}!\n"
assert result == f"{random_args}\n"


def test_execute_python_file_invalid():
Expand Down

0 comments on commit 5fe08db

Please sign in to comment.