Skip to content

Commit

Permalink
breaking test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jo-L committed Dec 17, 2024
1 parent c401cdb commit 780d4d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package_name/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
def a_function_that_will_break():
def function_that_will_break():
assert False
6 changes: 3 additions & 3 deletions tests/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def test_package_import():
import package_name # noqa: F401


def test_failure():
from package_name import a_function_that_will_break
def test_function_that_will_break():
from package_name import function_that_will_break

a_function_that_will_break()
function_that_will_break()

0 comments on commit 780d4d1

Please sign in to comment.