Skip to content

Commit 69e19e2

Browse files
committed
removed lint issues.
1 parent 6ae103b commit 69e19e2

1 file changed

Lines changed: 9 additions & 15 deletions

File tree

tests/integration/profiles/five-safes-crate/test_5src_13_validation_phase.py

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626

2727
# TO BE CHECKED AGAIN
2828
def test_5src_validation_check_not_of_type_assess_action():
29-
sparql = (SPARQL_PREFIXES + """
29+
sparql = (
30+
SPARQL_PREFIXES + """
3031
DELETE {
3132
?this rdf:type schema:AssessAction .
3233
}
@@ -62,8 +63,7 @@ def test_5src_validation_check_name_not_a_string():
6263
WHERE {
6364
?this schema:additionalType shp:ValidationCheck .
6465
}
65-
"""
66-
)
66+
""")
6767

6868
do_entity_test(
6969
rocrate_path=ValidROC().five_safes_crate_result,
@@ -87,8 +87,7 @@ def test_5src_validation_check_name_not_long_enough():
8787
WHERE {
8888
?this schema:additionalType shp:ValidationCheck .
8989
}
90-
"""
91-
)
90+
""")
9291

9392
do_entity_test(
9493
rocrate_path=ValidROC().five_safes_crate_result,
@@ -112,8 +111,7 @@ def test_5src_validation_check_has_action_status_with_not_allowed_value():
112111
WHERE {
113112
?s schema:additionalType <https://w3id.org/shp#ValidationCheck> .
114113
}
115-
"""
116-
)
114+
""")
117115

118116
do_entity_test(
119117
rocrate_path=ValidROC().five_safes_crate_result,
@@ -136,8 +134,7 @@ def test_5src_root_data_entity_does_not_mention_validation_check_entity():
136134
WHERE {
137135
?o schema:additionalType shp:ValidationCheck ;
138136
}
139-
"""
140-
)
137+
""")
141138

142139
do_entity_test(
143140
rocrate_path=ValidROC().five_safes_crate_result,
@@ -161,8 +158,7 @@ def test_5src_validation_check_object_does_not_point_to_root_data_entity():
161158
WHERE {
162159
?s schema:additionalType shp:ValidationCheck ;
163160
}
164-
"""
165-
)
161+
""")
166162

167163
do_entity_test(
168164
rocrate_path=ValidROC().five_safes_crate_result,
@@ -184,8 +180,7 @@ def test_5src_validation_check_instrument_does_not_point_to_5scrate_0p4():
184180
?s schema:additionalType shp:ValidationCheck ;
185181
schema:instrument <https://w3id.org/5s-crate/0.4> .
186182
}
187-
"""
188-
)
183+
""")
189184

190185
do_entity_test(
191186
rocrate_path=ValidROC().five_safes_crate_result,
@@ -209,8 +204,7 @@ def test_5src_Validation_check_does_not_have_action_status_property():
209204
?s schema:additionalType shp:ValidationCheck ;
210205
schema:actionStatus ?o .
211206
}
212-
"""
213-
)
207+
""")
214208

215209
do_entity_test(
216210
rocrate_path=ValidROC().five_safes_crate_result,

0 commit comments

Comments
 (0)