Skip to content

Commit b63b8ef

Browse files
committed
fix.
1 parent 924ad42 commit b63b8ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_execute.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def task_run_r_script(produces = Path("out.txt")): ...
6363
tmp_path.joinpath("script.r").write_text(textwrap.dedent(r_script))
6464

6565
result = runner.invoke(cli, [tmp_path.as_posix()])
66-
print(result.output) # noqa: T201
66+
6767
assert result.exit_code == ExitCode.OK
6868
assert tmp_path.joinpath("out.txt").exists()
6969

@@ -93,7 +93,7 @@ def run_r_script(): ...
9393
tmp_path.joinpath("script.r").write_text(textwrap.dedent(r_script))
9494

9595
result = runner.invoke(cli, [tmp_path.as_posix()])
96-
print(result.output) # noqa: T201
96+
9797
assert result.exit_code == ExitCode.OK
9898
assert tmp_path.joinpath("out.txt").exists()
9999

@@ -160,7 +160,7 @@ def task_run_r_script(): ...
160160
tmp_path.joinpath("script.r").write_text(textwrap.dedent(r_script))
161161

162162
result = runner.invoke(cli, [tmp_path.as_posix()])
163-
print(result.output) # noqa: T201
163+
164164
assert result.exit_code == ExitCode.OK
165165
assert tmp_path.joinpath("out.txt").exists()
166166

0 commit comments

Comments
 (0)