Skip to content

Commit

Permalink
Merge pull request #3 from udacity/new_branch
Browse files Browse the repository at this point in the history
breaking test
  • Loading branch information
joelsewhere authored Dec 17, 2024
2 parents 8a6b068 + ac9da3b commit f331a70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package_name/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
def a_function_that_will_break():
assert False
def function_that_will_not_break():
assert True
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_not_break

a_function_that_will_break()
function_that_will_not_break()

0 comments on commit f331a70

Please sign in to comment.