HADOOP-9365. TestHAZKUtil fails on Windows. Contributed by Ivan Mitic.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453676 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
97605f27e7
commit
33b3bcd357
|
@ -459,6 +459,8 @@ Trunk (Unreleased)
|
|||
HADOOP-9376. TestProxyUserFromEnv fails on a Windows domain joined machine.
|
||||
(Ivan Mitic via suresh)
|
||||
|
||||
HADOOP-9365. TestHAZKUtil fails on Windows. (Ivan Mitic via suresh)
|
||||
|
||||
Release 2.0.4-beta - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -40,7 +40,8 @@ public class TestHAZKUtil {
|
|||
"test-file");
|
||||
|
||||
/** A path which is expected not to exist */
|
||||
private static final String BOGUS_FILE = "/xxxx-this-does-not-exist";
|
||||
private static final String BOGUS_FILE =
|
||||
new File("/xxxx-this-does-not-exist").getPath();
|
||||
|
||||
@Test
|
||||
public void testEmptyACL() {
|
||||
|
|
Loading…
Reference in New Issue