Skip to content

Commit b1a98ef

Browse files
committed
updated tests
1 parent cb09a68 commit b1a98ef

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tests/e2e/notice_publisher_triple_store/test_load_transformed_notice_into_triple_store.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,14 @@ def test_load_notice_into_triple_store(transformed_complete_notice, allegro_trip
1919

2020
df_query_result = sparql_endpoint.with_query(sparql_query=SPARQL_QUERY_TRIPLES).fetch_tabular()
2121
assert df_query_result is not None
22-
# assert that the graph in the triple store has more than 1 triple inside
2322
if len(df_query_result) > 0:
2423
assert True
2524

26-
# assert that at least one graph exists in the triple store
2725
df_query_result = sparql_endpoint.with_query(sparql_query=SPARQL_QUERY_GRAPH).fetch_tabular()
2826
assert df_query_result is not None
2927
if len(df_query_result) > 0:
3028
assert True
3129

32-
# assert that the there is an epo:SPARQL_QUERY_FIXED_URI object that has the value equal to the notice ID
3330
df_query_result = sparql_endpoint.with_query(sparql_query=SPARQL_QUERY_FIXED_URI).fetch_tabular()
3431
assert df_query_result is not None
3532
print(df_query_result)

0 commit comments

Comments
 (0)