Skip to content

Commit 0ba8463

Browse files
committed
fix tests
1 parent d8618dd commit 0ba8463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tmux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ mod tests {
9393
fn test_capture_alphanumeric_sequences() {
9494
let input = "Hello, world! 123 abc_def";
9595
let words = super::capture_alphanumeric_sequences(input);
96-
assert_eq!(words, vec!["Hello", "world", "123", "abc_def"]);
96+
assert_eq!(words, vec!["Hello", "world", "123", "abc", "def"]);
9797
}
9898

9999
#[test]

0 commit comments

Comments
 (0)