Skip to content

Commit

Permalink
Fix for syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
margalva committed Sep 23, 2024
1 parent 245eb0b commit d1ccdae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test_cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"tests/test_data/webfonts/",
"htmltest/",
"htmltest_again/",
"sameport/"
"sameport_again/"
"sameport/" "sameport_again/",
]
)
dir_list.append("tests/test_data/create_delete/")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def test_same_port(request) -> bool:
logfile = join(request.fspath.dirname, "outfile_10.txt")
a = Service(logfile=logfile, db_directory="sameport")
_ = a.start(create_db=True)
b = Service(logfile=logfile, db_directory="sameport_again", port = a._port)
b = Service(logfile=logfile, db_directory="sameport_again", port=a._port)
_ = b.start(create_db=True)
a.stop()
b.stop()
Expand Down

0 comments on commit d1ccdae

Please sign in to comment.