Skip to content

Commit

Permalink
Fix change to test
Browse files Browse the repository at this point in the history
  • Loading branch information
jayqi committed Jul 2, 2020
1 parent 5095d2e commit ed31b7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_version_python_m():
["python", "-m", "nbautoexport", "--version"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
universal_newlines=True,
)
assert result.returncode == 0
assert result.stdout.strip() == __version__
2 changes: 1 addition & 1 deletion tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_export_notebook(notebooks_dir, organize_by):
export_notebook(notebook.path, config)

expected_exports = set()
for fmt in ExportFormat:
for fmt in EXPORT_FORMATS_TO_TEST:
if organize_by == "extension":
subfolder = notebooks_dir / fmt.value
elif organize_by == "notebook":
Expand Down

0 comments on commit ed31b7b

Please sign in to comment.