Skip to content

Commit 66a167c

Browse files
committed
Remove tests after removing associated code
1 parent 0298997 commit 66a167c

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

yoti_python_sdk/tests/dynamic_sharing_service/policy/test_source_constraint_builder.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,3 @@ def test_with_soft_preference():
3333
assert ANCHOR_VALUE_DRIVING_LICENCE in [a["name"] for a in anchors]
3434
assert ANCHOR_VALUE_PASSPORT in [a["name"] for a in anchors]
3535
assert constraint["preferred_sources"]["soft_preference"]
36-
37-
38-
def test_with_is_strictly_latin_set_true():
39-
constraint = SourceConstraintBuilder().allow_strictly_latin().build()
40-
41-
assert constraint["is_strictly_latin"] is True
42-
43-
44-
def test_with_is_strictly_latin_set_false():
45-
constraint = SourceConstraintBuilder().disable_strictly_latin().build()
46-
47-
assert constraint["is_strictly_latin"] is False
48-
49-
50-
def test_with_is_strictly_latin_default():
51-
constraint = SourceConstraintBuilder().build()
52-
53-
assert "is_strictly_latin" not in constraint

0 commit comments

Comments
 (0)