Skip to content

Commit b6f63b5

Browse files
committed
fix test
1 parent 88932da commit b6f63b5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/integ/test_dataframe.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,7 @@ def assert_show_string_equals(actual: str, expected: str):
19341934
+-------+-------+-------+--------------------+--------+----------+-------+-------+-------+--------+--------+---------+------------+
19351935
|"COL_1"|"COL_2"|"COL_3"| "COL_4"| "COL_5"| "COL_6"|"COL_7"|"COL_8"|"COL_9"|"COL_10"|"COL_11"| "COL_12"| "COL_13"|
19361936
+-------+-------+-------+--------------------+--------+----------+-------+-------+-------+--------+--------+---------+------------+
1937-
| 1| one| 1.1|2017-02-24T12:00:...|20:57:06|2017-02-25| True| False| NULL| 61| 0.5|[1, 2, 3]|{'a': 'foo'}|
1937+
| 1| one| 1.1|2017-02-24 12:00:...|20:57:06|2017-02-25| true| false| NULL| 61| 0.5|[1, 2, 3]|{'a': 'foo'}|
19381938
+-------+-------+-------+--------------------+--------+----------+-------+-------+-------+--------+--------+---------+------------+
19391939
"""
19401940
),
@@ -1948,7 +1948,7 @@ def assert_show_string_equals(actual: str, expected: str):
19481948
+-----+-----+-----+--------------------+--------+----------+-----+-----+-----+------+------+---------+------------+
19491949
|col_1|col_2|col_3| col_4| col_5| col_6|col_7|col_8|col_9|col_10|col_11| col_12| col_13|
19501950
+-----+-----+-----+--------------------+--------+----------+-----+-----+-----+------+------+---------+------------+
1951-
| 1| one| 1.1|2017-02-24T12:00:...|20:57:06|2017-02-25| True|False| NULL| 61| 0.5|[1, 2, 3]|{'a': 'foo'}|
1951+
| 1| one| 1.1|2017-02-24 12:00:...|20:57:06|2017-02-25| true|false| NULL| 61| 0.5|[1, 2, 3]|{'a': 'foo'}|
19521952
+-----+-----+-----+--------------------+--------+----------+-----+-----+-----+------+------+---------+------------+
19531953
"""
19541954
),
@@ -1965,11 +1965,11 @@ def assert_show_string_equals(actual: str, expected: str):
19651965
col_1 | 1
19661966
col_2 | one
19671967
col_3 | 1.1
1968-
col_4 | 2017-02-24T12:00:...
1968+
col_4 | 2017-02-24 12:00:...
19691969
col_5 | 20:57:06
19701970
col_6 | 2017-02-25
1971-
col_7 | True
1972-
col_8 | False
1971+
col_7 | true
1972+
col_8 | false
19731973
col_9 | NULL
19741974
col_10 | 61
19751975
col_11 | 0.5
@@ -1991,11 +1991,11 @@ def assert_show_string_equals(actual: str, expected: str):
19911991
col_1 | 1
19921992
col_2 | one
19931993
col_3 | 1.1
1994-
col_4 | 2017-02-24T12:00:05.456000
1994+
col_4 | 2017-02-24 12:00:05.456000
19951995
col_5 | 20:57:06
19961996
col_6 | 2017-02-25
1997-
col_7 | True
1998-
col_8 | False
1997+
col_7 | true
1998+
col_8 | false
19991999
col_9 | NULL
20002000
col_10 | 61
20012001
col_11 | 0.5
@@ -2015,7 +2015,7 @@ def assert_show_string_equals(actual: str, expected: str):
20152015
+-----+-----+-----+--------------------------+--------+----------+-----+-----+-----+------+------+---------+------------+
20162016
|col_1|col_2|col_3|col_4 |col_5 |col_6 |col_7|col_8|col_9|col_10|col_11|col_12 |col_13 |
20172017
+-----+-----+-----+--------------------------+--------+----------+-----+-----+-----+------+------+---------+------------+
2018-
|1 |one |1.1 |2017-02-24T12:00:05.456000|20:57:06|2017-02-25|True |False|NULL |61 |0.5 |[1, 2, 3]|{'a': 'foo'}|
2018+
|1 |one |1.1 |2017-02-24 12:00:05.456000|20:57:06|2017-02-25|True |false|NULL |61 |0.5 |[1, 2, 3]|{'a': 'foo'}|
20192019
+-----+-----+-----+--------------------------+--------+----------+-----+-----+-----+------+------+---------+------------+
20202020
"""
20212021
),
@@ -2031,7 +2031,7 @@ def assert_show_string_equals(actual: str, expected: str):
20312031
+-----+-----+-----+----------+--------+----------+-----+-----+-----+------+------+---------+----------+
20322032
|col_1|col_2|col_3| col_4| col_5| col_6|col_7|col_8|col_9|col_10|col_11| col_12| col_13|
20332033
+-----+-----+-----+----------+--------+----------+-----+-----+-----+------+------+---------+----------+
2034-
| 1| one| 1.1|2017-02...|20:57:06|2017-02-25| True|False| NULL| 61| 0.5|[1, 2, 3]|{'a': '...|
2034+
| 1| one| 1.1|2017-02...|20:57:06|2017-02-25| true|false| NULL| 61| 0.5|[1, 2, 3]|{'a': '...|
20352035
+-----+-----+-----+----------+--------+----------+-----+-----+-----+------+------+---------+----------+
20362036
"""
20372037
),

0 commit comments

Comments
 (0)