keith-turner closed pull request #965: fix build
URL: https://github.com/apache/fluo/pull/965
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/modules/integration/src/test/java/org/apache/fluo/integration/impl/ScannerIT.java
 
b/modules/integration/src/test/java/org/apache/fluo/integration/impl/ScannerIT.java
index 0a6bc993..e5a8d023 100644
--- 
a/modules/integration/src/test/java/org/apache/fluo/integration/impl/ScannerIT.java
+++ 
b/modules/integration/src/test/java/org/apache/fluo/integration/impl/ScannerIT.java
@@ -70,7 +70,7 @@ public void testFiltering() {
 
     try (Snapshot snap = client.newSnapshot()) {
       HashSet<RowColumnValue> actual = new HashSet<>();
-      Iterables.addAll(actual, snap.scanner().over(Span.exact("r2")).build());
+      Iterables.addAll(actual, snap.scanner().over("r2").build());
       Assert.assertEquals(expectedR2, actual);
 
       actual.clear();
diff --git 
a/modules/integration/src/test/java/org/apache/fluo/integration/impl/StochasticBankIT.java
 
b/modules/integration/src/test/java/org/apache/fluo/integration/impl/StochasticBankIT.java
index 6c6e6de1..8a767d9f 100644
--- 
a/modules/integration/src/test/java/org/apache/fluo/integration/impl/StochasticBankIT.java
+++ 
b/modules/integration/src/test/java/org/apache/fluo/integration/impl/StochasticBankIT.java
@@ -54,7 +54,7 @@
  */
 public class StochasticBankIT extends ITBaseImpl {
   @Rule
-  public Timeout globalTimeout = Timeout.seconds(getTestTimeout() * 2);
+  public Timeout globalTimeout = Timeout.seconds(getTestTimeout() * 4);
 
   private static final Logger log = 
LoggerFactory.getLogger(StochasticBankIT.class);
   private static AtomicInteger txCount = new AtomicInteger();


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to