Skip to content

Commit

Permalink
temp unit test change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobin Baker committed May 8, 2017
1 parent 6bb3823 commit c0d773b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/edu/washington/escience/myria/operator/DupElimTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ private static List<TupleBatch> makeTestData() {
@Test
public void testDupElim() throws DbException {
BatchTupleSource src = new BatchTupleSource(makeTestData());
StreamingStateWrapper dupElim = new StreamingStateWrapper(src, new DupElim());
// StreamingStateWrapper dupElim = new StreamingStateWrapper(src, new DupElim());
DupElimHashOnly dupElim = new DupElimHashOnly(src);

List<TupleBatch> ans = Lists.newLinkedList();
dupElim.open(TestEnvVars.get());
Expand Down

0 comments on commit c0d773b

Please sign in to comment.