just playing with tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

jj-lib: fix typo in tests

authored by

George Tsiamasiotis and committed by
Martin von Zweigbergk
843e0edc 79421c66

+2 -2
+2 -2
lib/src/gitignore.rs
··· 279 279 280 280 #[test] 281 281 #[cfg(not(target_os = "windows"))] 282 - fn teest_gitignore_backslash_path() { 282 + fn test_gitignore_backslash_path() { 283 283 assert!(!matches(b"/foo/bar", "/foo\\bar")); 284 284 assert!(!matches(b"/foo/bar", "/foo/bar\\")); 285 285 ··· 296 296 #[cfg(target_os = "windows")] 297 297 /// ignore crate consider backslashes as a directory divider only on 298 298 /// Windows. 299 - fn teest_gitignore_backslash_path() { 299 + fn test_gitignore_backslash_path() { 300 300 assert!(matches(b"/foo/bar", "/foo\\bar")); 301 301 assert!(matches(b"/foo/bar", "/foo/bar\\")); 302 302