Skip to content

Commit cbb4668

Browse files
committed
fix: assert location
1 parent d3a72d9 commit cbb4668

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/packages/test_locker.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -647,11 +647,11 @@ def test_reading_lock_file_should_raise_an_error_on_missing_metadata(
647647
with pytest.raises(RuntimeError) as e:
648648
_ = locker.lock_data
649649

650-
assert (
651-
"The lock file does not have a metadata entry.\nRegenerate the lock file with"
652-
" the `poetry lock` command."
653-
in str(e.value)
654-
)
650+
assert (
651+
"The lock file does not have a metadata entry.\nRegenerate the lock file with"
652+
" the `poetry lock` command."
653+
in str(e.value)
654+
)
655655

656656

657657
def test_locking_legacy_repository_package_should_include_source_section(

0 commit comments

Comments
 (0)