Skip to content

Commit

Permalink
extra lines was commented
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Aug 5, 2023
1 parent bb3d153 commit 820fe4b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
@pytest.mark.timeout(60)
def test_cli_where():
strings = [
'open("%s", "a").write("(step 0)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
#'open("%s", "a").write("(step 0)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
rf'import is_odd # instld: where {os.path.join("tests", "cli", "data", "pok")}',
'open("%s", "a").write("(step 1)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
#'open("%s", "a").write("(step 1)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
rf'import is_even # instld: where {os.path.join("tests", "cli", "data", "chpok")}',
'open("%s", "a").write("(step 2)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
#'open("%s", "a").write("(step 2)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
'assert is_odd.valid(23)',
'open("%s", "a").write("(step 3)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
#'open("%s", "a").write("(step 3)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
'assert is_even.isEven(1)',
'open("%s", "a").write("(step 4)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
#'open("%s", "a").write("(step 4)")' % (os.path.join("tests", "cli", "data", "test.log"), ),
]

script = os.path.join('tests', 'cli', 'data', 'main.py')
Expand Down

0 comments on commit 820fe4b

Please sign in to comment.