Commit a18729dc authored by binji's avatar binji Committed by Commit bot

[NaCl SDK] nacl_io: Fix bad test added in def60c00.

BUG=none
R=sbc@chromium.org

Review URL: https://codereview.chromium.org/1032003002

Cr-Commit-Position: refs/heads/master@{#322121}
parent 13125d5b
......@@ -188,7 +188,7 @@ TEST(PathTest, Range_Relative) {
EXPECT_EQ("path", p.Range(2, 3));
EXPECT_EQ("", p.Range(2, 100));
EXPECT_EQ("path", p.Range(2, 100));
EXPECT_EQ("", p.Range(42, 67));
}
......@@ -209,7 +209,7 @@ TEST(PathTest, Range_Absolute) {
EXPECT_EQ("path", p.Range(3, 4));
EXPECT_EQ("", p.Range(2, 100));
EXPECT_EQ("absolute/path", p.Range(2, 100));
EXPECT_EQ("", p.Range(42, 67));
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment