HBASE-726 Unit tests won't run because of a typo
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@674644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1f93bb5708
commit
20f56cc97d
|
@ -168,6 +168,7 @@ Trunk (unreleased changes)
|
|||
and HConnectionManager (Jean-Daniel Cryans via Stack)
|
||||
HBASE-703 Invalid regions listed by regionserver.jsp (Izaak Rubin via Stack)
|
||||
HBASE-674 Memcache size unreliable
|
||||
HBASE-726 Unit tests won't run because of a typo (Sebastien Rainville via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-559 MR example job to count table rows
|
||||
|
|
|
@ -112,7 +112,7 @@ public abstract class HBaseTestCase extends TestCase {
|
|||
protected void setUp() throws Exception {
|
||||
super.setUp();
|
||||
localfs =
|
||||
(conf.get("fs.default.name", "file:///").compareTo("file::///") == 0);
|
||||
(conf.get("fs.default.name", "file:///").compareTo("file:///") == 0);
|
||||
|
||||
if (fs == null) {
|
||||
this.fs = FileSystem.get(conf);
|
||||
|
|
Loading…
Reference in New Issue