Skip to content

Commit

Permalink
HSEARCH-3759 Fix a typo in LibraryShowcaseMassIndexingIT
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Mar 6, 2020
1 parent cace4eb commit 813916f
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -57,7 +57,7 @@ private static void checkInvariants() {
private DocumentService documentService;

@Autowired
private AdminService massiveIndexer;
private AdminService adminService;

@Autowired
private TestDataService testDataService;
Expand All @@ -70,7 +70,7 @@ public void initData() {
@Test
public void testMassIndexing() {
assertThat( documentService.countIndexed() ).isEqualTo( 0 );
MassIndexer indexer = massiveIndexer.createMassIndexer();
MassIndexer indexer = adminService.createMassIndexer();
try {
indexer.startAndWait();
}
Expand All @@ -83,7 +83,7 @@ public void testMassIndexing() {
@Test
public void testMassIndexingMonitor() {
assertThat( documentService.countIndexed() ).isEqualTo( 0 );
MassIndexer indexer = massiveIndexer.createMassIndexer();
MassIndexer indexer = adminService.createMassIndexer();
try {
/*
* The default period for logging in the default mass indexing monitor is 50.
Expand Down

0 comments on commit 813916f

Please sign in to comment.