Skip to content

Commit 8925423

Browse files
author
stonebig
committed
a real (test) bug detected per AppVeyor
1 parent dc1a414 commit 8925423

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlite_bro/tests/test_general.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ def test_Basics():
1717
create table item (ItemNo, Description,Kg , PRIMARY KEY (ItemNo));
1818
INSERT INTO item values("T","Ford",1000);
1919
INSERT INTO item select "A","Merced",1250 union all select "W","Wheel",9 ;
20-
.once 'this_file_of_result.tmp'
20+
.once '%s'
2121
select ItemNo, Description, 1000*Kg Gramm from item order by ItemNo desc;
22-
.import '%s' in_this_table""" % tmp_file
22+
.import '%s' in_this_table""" % (tmp_file, tmp_file)
2323
app.n.new_query_tab("Welcome", welcome_text)
2424
app.run_tab()
2525
app.close_db

0 commit comments

Comments
 (0)