Skip to content
Snippets Groups Projects
Verified Commit 095ec6ee authored by Timm Fitschen's avatar Timm Fitschen
Browse files

STY: autopep8'ed

parent f49e5211
No related branches found
No related tags found
No related merge requests found
...@@ -408,7 +408,8 @@ def test_find_any_version_of_record_with_simple_pov_datetime_filter(): ...@@ -408,7 +408,8 @@ def test_find_any_version_of_record_with_simple_pov_datetime_filter():
"FIND ANY VERSION OF RECORD WITH TestPropertyDatetime = 2022-12-24T20:15:00") "FIND ANY VERSION OF RECORD WITH TestPropertyDatetime = 2022-12-24T20:15:00")
assert len(result) == 1 assert len(result) == 1
assert result[0].description == "v2" assert result[0].description == "v2"
assert result[0].get_property("TestPropertyDatetime").value.startswith("2022") assert result[0].get_property(
"TestPropertyDatetime").value.startswith("2022")
result = query( result = query(
"FIND ANY VERSION OF RECORD WITH TestPropertyDatetime = 2021-12-24T20:15:00") "FIND ANY VERSION OF RECORD WITH TestPropertyDatetime = 2021-12-24T20:15:00")
...@@ -424,7 +425,8 @@ def test_find_any_version_of_record_with_simple_pov_datetime_filter(): ...@@ -424,7 +425,8 @@ def test_find_any_version_of_record_with_simple_pov_datetime_filter():
"FIND ANY VERSION OF RECORD WITH TestPropertyDatetime IN 2022") "FIND ANY VERSION OF RECORD WITH TestPropertyDatetime IN 2022")
assert len(result) == 1 assert len(result) == 1
assert result[0].description == "v2" assert result[0].description == "v2"
assert result[0].get_property("TestPropertyDatetime").value.startswith("2022") assert result[0].get_property(
"TestPropertyDatetime").value.startswith("2022")
result = query( result = query(
"FIND ANY VERSION OF RECORD WITH TestPropertyDatetime IN 2021") "FIND ANY VERSION OF RECORD WITH TestPropertyDatetime IN 2021")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment