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 71b8ff5 commit 8775ae3Copy full SHA for 8775ae3
tests/test_import_file.py
@@ -100,9 +100,9 @@
100
# csv file
101
(FILE_CSV_SAMPLE, IMPORT_TXT_FILE_RESULT_DATA),
102
# Invalid text structure
103
- (FILE_TXT_INVALID, list()),
+ (FILE_TXT_INVALID, []),
104
# Invalid date range
105
- (FILE_RNG_INVALID, list())
+ (FILE_RNG_INVALID, [])
106
]
107
108
import_ics_tests = [
@@ -118,9 +118,9 @@
118
}
119
]),
120
# ics invalid file
121
- (FILE_ICS_INVALID_DATA, list()),
+ (FILE_ICS_INVALID_DATA, []),
122
123
- (FILE_ICS_INVALID_DATA2, list())
+ (FILE_ICS_INVALID_DATA2, [])
124
125
126
is_file_valid_to_import_tests = [
0 commit comments