Skip to content

Commit f114b22

Browse files
Fix unitest test_writer
1 parent ba4f939 commit f114b22

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

test/utils/test_writer.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@
2121

2222
def test_save_csv_file():
2323
keys = ["x1", "y1", "z1"]
24-
alias_dict = (
25-
{
26-
"x": "x1",
27-
"y": "y1",
28-
"z": "z1",
29-
},
30-
)
24+
alias_dict = {
25+
"x": "x1",
26+
"y": "y1",
27+
"z": "z1",
28+
}
3129
data_dict = {
3230
keys[0]: np.random.randint(0, 255, (10, 1)),
3331
keys[1]: np.random.rand(10, 1),

0 commit comments

Comments
 (0)