Skip to content

Commit e4ab26b

Browse files
author
Andy Landy
committed
fix tests
1 parent 05b4f5d commit e4ab26b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def run_code_in_jupyter(tmp_path, lines: List[str]) -> str:
167167
out_path = tmp_path / 'output.ipynb'
168168
run_cmd([
169169
'jupyter', 'nbconvert', '--execute', '--allow-errors', '--to',
170-
'notebook', '--output', out_path.relative_to(inp_path.parent), str(inp_path),
170+
'notebook', '--output', str(out_path.relative_to(inp_path.parent)), str(inp_path),
171171
])
172172

173173
with out_path.open('r') as inp:

0 commit comments

Comments
 (0)