mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 18:27:38 +00:00
jj-lib: fix typo in tests
This commit is contained in:
parent
79421c6685
commit
843e0edcf7
1 changed files with 2 additions and 2 deletions
|
@ -279,7 +279,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
#[cfg(not(target_os = "windows"))]
|
||||
fn teest_gitignore_backslash_path() {
|
||||
fn test_gitignore_backslash_path() {
|
||||
assert!(!matches(b"/foo/bar", "/foo\\bar"));
|
||||
assert!(!matches(b"/foo/bar", "/foo/bar\\"));
|
||||
|
||||
|
@ -296,7 +296,7 @@ mod tests {
|
|||
#[cfg(target_os = "windows")]
|
||||
/// ignore crate consider backslashes as a directory divider only on
|
||||
/// Windows.
|
||||
fn teest_gitignore_backslash_path() {
|
||||
fn test_gitignore_backslash_path() {
|
||||
assert!(matches(b"/foo/bar", "/foo\\bar"));
|
||||
assert!(matches(b"/foo/bar", "/foo/bar\\"));
|
||||
|
||||
|
|
Loading…
Reference in a new issue