We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71466ad commit bb6274aCopy full SHA for bb6274a
tests/integration/test_export.py
@@ -84,10 +84,13 @@ def test_export_filtered_dates(client,
84
regular_export = project.export_labels(download=True)
85
assert len(regular_export) == 1
86
87
- filtered_export = project.export_labels(download=True,
88
- start="2020-01-01 00:00:01")
+ filtered_export = project.export_labels(download=True, start="2020-01-01")
89
assert len(filtered_export) == 1
90
+ filtered_export_with_time = project.export_labels(
91
+ download=True, start="2020-01-01 00:00:01")
92
+ assert len(filtered_export_with_time) == 1
93
+
94
empty_export = project.export_labels(download=True,
95
start="2020-01-01",
96
end="2020-01-02")
0 commit comments