Skip to content

Commit c84032b

Browse files
author
anastasianayden
committed
fix: typo fixed
1 parent 5ed8a27 commit c84032b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ckanext/fairdatapoint/tests/test_profiles.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from dateutil.tz import tzutc, tzoffset
2222
from pathlib import Path
2323
from rdflib import Graph, URIRef
24-
from ckanext.fairdatapoint.profiles import validate_tags, convert_datetime_string, FAIRDataPointDCATAPProfile
24+
from ckanext.fairdatapoint.profiles import validate_tags, convert_datetime_string
2525
from ckanext.fairdatapoint.harvesters.domain.fair_data_point_record_to_package_converter import (
2626
FairDataPointRecordToPackageConverter)
2727

@@ -93,7 +93,7 @@ def test_parse_dataset():
9393
("2023-10-06T10:12:55.614000+00:00",
9494
datetime(2023, 10, 6, 10, 12, 55, 614000, tzinfo=tzutc())),
9595
("2024-02-15 11:16:37+03:00",
96-
datetime(2024, 2, 5, 11, 16, 37, tzinfo=tzoffset(None, 10800))),
96+
datetime(2024, 2, 15, 11, 16, 37, tzinfo=tzoffset(None, 10800))),
9797
("November 9, 1999", datetime(1999, 11, 9, 0, 0, 0)),
9898
("2006-09", datetime(2006, 9, 18))])
9999
def test_convert_datetime_string(input_timestring, expected_output):

0 commit comments

Comments
 (0)