HADOOP-8444. Fix the tests FSMainOperationsBaseTest.java and FileContextMainOperationsBaseTest.java to avoid potential test failure. Contributed by Madhukara Phatak. (harsh)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1343732 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d2b57e00bc
commit
e576bac2f7
|
@ -215,6 +215,10 @@ Release 2.0.1-alpha - UNRELEASED
|
|||
HADOOP-8268. A few pom.xml across Hadoop project
|
||||
may fail XML validation. (Radim Kolar via harsh)
|
||||
|
||||
HADOOP-8444. Fix the tests FSMainOperationsBaseTest.java and
|
||||
FileContextMainOperationsBaseTest.java to avoid potential
|
||||
test failure (Madhukara Phatak via harsh)
|
||||
|
||||
Release 2.0.0-alpha - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -75,7 +75,7 @@ public abstract class FSMainOperationsBaseTest {
|
|||
//A test filter with returns any path containing a "b"
|
||||
final private static PathFilter TEST_X_FILTER = new PathFilter() {
|
||||
public boolean accept(Path file) {
|
||||
if(file.getName().contains("x") || file.toString().contains("X"))
|
||||
if(file.getName().contains("x") || file.getName().contains("X"))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
|
|
@ -75,7 +75,7 @@ public abstract class FileContextMainOperationsBaseTest {
|
|||
//A test filter with returns any path containing a "b"
|
||||
final private static PathFilter TEST_X_FILTER = new PathFilter() {
|
||||
public boolean accept(Path file) {
|
||||
if(file.getName().contains("x") || file.toString().contains("X"))
|
||||
if(file.getName().contains("x") || file.getName().contains("X"))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue