Skip to content

Commit

Permalink
Round up branding stragglers
Browse files Browse the repository at this point in the history
  • Loading branch information
pythoninthegrass committed Oct 24, 2023
1 parent 913c54f commit 90b2d36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "m3u-prsr"
version = "0.1.32"
version = "0.1.33"
description = ""
authors = [
"Dave A <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions tests/test_m3u_parser.py → tests/test_m3u_prsr.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# import app/m3u_parser.py
sys.path.append(str(tld / 'app'))
import m3u_parser
import app.main as main

# suppress healthcheck warnings
settings.register_profile("dev", suppress_health_check=list(HealthCheck))
Expand All @@ -24,4 +24,4 @@ def m3u_file():

@given(verbose=st.booleans())
def test_parsem3u(m3u_file, verbose):
m3u_parser.parsem3u(infile=m3u_file, verbose=verbose)
main.parsem3u(infile=m3u_file, verbose=verbose)

0 comments on commit 90b2d36

Please sign in to comment.