You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2018/02/07 21:17:30 UTC

[accumulo] branch master updated: ACCUMULO-4797 fix bug in test

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new a17cf69  ACCUMULO-4797 fix bug in test
a17cf69 is described below

commit a17cf69c536260509b8f58e7336acd60e590a67c
Author: Keith Turner <kt...@apache.org>
AuthorDate: Wed Feb 7 16:17:16 2018 -0500

    ACCUMULO-4797 fix bug in test
---
 .../apache/accumulo/server/master/balancer/TableLoadBalancerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/base/src/test/java/org/apache/accumulo/server/master/balancer/TableLoadBalancerTest.java b/server/base/src/test/java/org/apache/accumulo/server/master/balancer/TableLoadBalancerTest.java
index 012b846..afcf6ac 100644
--- a/server/base/src/test/java/org/apache/accumulo/server/master/balancer/TableLoadBalancerTest.java
+++ b/server/base/src/test/java/org/apache/accumulo/server/master/balancer/TableLoadBalancerTest.java
@@ -147,7 +147,7 @@ public class TableLoadBalancerTest {
       @Override
       public TableConfiguration getTableConfiguration(Table.ID tableId) {
         // create a dummy namespaceConfiguration to satisfy requireNonNull in TableConfiguration constructor
-        NamespaceConfiguration dummyConf = new NamespaceConfiguration(null, null, null);
+        NamespaceConfiguration dummyConf = new NamespaceConfiguration(null, inst, null);
         return new TableConfiguration(inst, tableId, dummyConf) {
           @Override
           public String get(Property property) {

-- 
To stop receiving notification emails like this one, please contact
kturner@apache.org.