Skip to content

Commit c7d55b6

Browse files
Add missing asserts
1 parent 404e556 commit c7d55b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_sketch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ def test_constraint_solver():
449449

450450
assert s2._faces.isValid()
451451

452-
s2._tags["s1"][0].Length() == approx(0.5)
453-
s2._tags["a1"][0].Length() == approx(1.0)
452+
assert s2._tags["s1"][0].Length() == approx(0.5)
453+
assert s2._tags["a1"][0].Length() == approx(1.0)
454454

455455
s3 = (
456456
Sketch()

0 commit comments

Comments
 (0)