Skip to content

Commit 69ab874

Browse files
authored
Merge pull request #12 from Manishearth/inconsistent
remove inconsistent test
2 parents da05c66 + 03cefb5 commit 69ab874

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ use std::path::*;
2727
///
2828
/// assert_eq!(diff_paths("/foo/bar", "baz"), Some("/foo/bar".into()));
2929
/// assert_eq!(diff_paths("/foo/bar", "/baz"), Some("../foo/bar".into()));
30-
/// assert_eq!(diff_paths("baz", "/foo/bar"), None);
3130
/// assert_eq!(diff_paths("foo", "bar"), Some("../foo".into()));
3231
///
3332
/// assert_eq!(
@@ -105,7 +104,6 @@ mod utf8_paths {
105104
///
106105
/// assert_eq!(diff_utf8_paths("/foo/bar", "baz"), Some("/foo/bar".into()));
107106
/// assert_eq!(diff_utf8_paths("/foo/bar", "/baz"), Some("../foo/bar".into()));
108-
/// assert_eq!(diff_utf8_paths("baz", "/foo/bar"), None);
109107
/// assert_eq!(diff_utf8_paths("foo", "bar"), Some("../foo".into()));
110108
///
111109
/// assert_eq!(

0 commit comments

Comments
 (0)