DomGarguilo commented on a change in pull request #2197:
URL: https://github.com/apache/accumulo/pull/2197#discussion_r674816719
##########
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:
Are these 3 comments intentionally present?
--
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]