Skip to content

Commit

Permalink
tests: update luau test using qsv_register_lookup to not cache the …
Browse files Browse the repository at this point in the history
…downloaded lookup table
  • Loading branch information
jqnatividad committed Nov 19, 2023
1 parent 1522b59 commit e73f7f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_luau.rs
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ BEGIN {
csv_indexed = qsv_autoindex();
us_states_lookup_headers = qsv_register_lookup("us_states",
"https://raw.githubusercontent.com/jqnatividad/qsv/master/resources/test/us-states-lookup.csv", 1000)
"https://raw.githubusercontent.com/jqnatividad/qsv/master/resources/test/us-states-lookup.csv", -1)
-- note how we use the qsv_log function to log to the qsv log file
qsv_log("debug", " _INDEX:", _INDEX, " _ROWCOUNT:", _ROWCOUNT, " csv_indexed:", csv_indexed)
Expand Down Expand Up @@ -640,7 +640,7 @@ BEGIN {
csv_indexed = qsv_autoindex();
us_states_lookup_headers = qsv_register_lookup("us_states",
"dathere://us-states-example.csv", 1000)
"dathere://us-states-example.csv", -1)
-- note how we use the qsv_log function to log to the qsv log file
qsv_log("debug", " _INDEX:", _INDEX, " _ROWCOUNT:", _ROWCOUNT, " csv_indexed:", csv_indexed)
Expand Down

0 comments on commit e73f7f6

Please sign in to comment.