File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def test_create_results_table(tmp_path):
91
91
92
92
cnx_in = sqlite3 .connect (os .path .join (tmp_path , "test_results_table.db" ))
93
93
cur = cnx_in .cursor ()
94
- cur .execute ("select * from pp_results " )
94
+ cur .execute ("select * from sorcha_results " )
95
95
col_names = list (map (lambda x : x [0 ], cur .description ))
96
96
test_inputs = pd .DataFrame (cur .fetchall (), columns = col_names )
97
97
cnx_out .close ()
@@ -125,7 +125,7 @@ def test_create_results_database(tmp_path):
125
125
col_names = list (map (lambda x : x [0 ], cur .description ))
126
126
test_orbits = pd .DataFrame (cur .fetchall (), columns = col_names )
127
127
128
- cur .execute ("select * from pp_results " )
128
+ cur .execute ("select * from sorcha_results " )
129
129
col_names = list (map (lambda x : x [0 ], cur .description ))
130
130
test_results = pd .DataFrame (cur .fetchall (), columns = col_names )
131
131
You can’t perform that action at this time.
0 commit comments