Skip to content

Commit 3f0f35f

Browse files
committed
do important assert first
1 parent a50b1af commit 3f0f35f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ def test_compare_equal_segments(parser, default_una_segment):
109109
"""Just make sure that comparing Segment objects works"""
110110
a = Segment("RFF", ["PD", "50515"])
111111
b = Segment("RFF", ["PD", "50515"])
112+
assert a == b
112113
assert (
113114
a is not b
114115
), "Two separatedly, but visually identically created Segment objects may not be the same object."
115-
assert a == b
116116

117117

118118
def test_una_parser1(parser):

0 commit comments

Comments
 (0)