Skip to content

Commit 73cec63

Browse files
committed
fix failing unit test
1 parent 6dda791 commit 73cec63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clojure_string/blank_qmark_.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ mod tests {
7171
let blank = BlankFn {};
7272
let s = " \thello \n \r ";
7373
let args = vec![Rc::new(Value::String(String::from(s)))];
74-
assert_eq!(Value::Boolean(true), blank.invoke(args));
74+
assert_eq!(Value::Boolean(false), blank.invoke(args));
7575
}
7676

7777
#[test]

0 commit comments

Comments
 (0)