Skip to content

Commit 38ba536

Browse files
committed
test: fixed test on windows
1 parent 67362d7 commit 38ba536

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# `zsql` Query files via terminal
22

3-
A terminal utility to easily run SQL queries on CSV files via terminal. `zsql` is powered by rust and C.
3+
A _single binary_ terminal utility to easily run SQL queries on CSV files. Powered by rust and C.

src/sql_engine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ pub mod tests {
143143
.unwrap();
144144
engine.query("SELECT * FROM 'oscar_age' WHERE Year = '2014'");
145145

146-
let expected = "87,2014,44,Matthew McConaughey,Dallas Buyers Club\n".to_string();
146+
let expected = format!("87,2014,44,Matthew McConaughey,Dallas Buyers Club{}", LINE_ENDING);
147147
assert_eq!(engine.output.contents, Some(expected))
148148
}
149149
}

0 commit comments

Comments
 (0)