milleruntime commented on a change in pull request #2197:
URL: https://github.com/apache/accumulo/pull/2197#discussion_r674970102
##########
File path:
server/base/src/test/java/org/apache/accumulo/server/client/BulkImporterTest.java
##########
@@ -112,11 +113,15 @@ public void testFindOverlappingTablets() throws Exception
{
MockTabletLocator locator = new MockTabletLocator();
FileSystem fs = FileSystem.getLocal(new Configuration());
ServerContext context = MockServerContext.get();
+ CryptoService cs = CryptoServiceFactory.none();
+ // TableConfiguration tableConf =
EasyMock.createMock(TableConfiguration.class);
+ //
expect(context.getTableConfiguration(tableId)).andReturn(tableConf).anyTimes();
+ //
expect(tableConf.getCryptoService()).andReturn(CryptoServiceFactory.none()).anyTimes();
Review comment:
Yes I had left these lines in the test while it was failing but I
recently fixed it. It is passing now so I'll remove them.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]