Skip to content

Commit

Permalink
adapt remaining test cases to changed test data
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlippert committed Nov 15, 2024
1 parent 5cded42 commit d43f16a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void testBeansNameAndTypeFromBeanAnnotatedMethod() throws Exception {
List<Bean> beans = result.get(5, TimeUnit.SECONDS);

assertNotNull(beans);
assertEquals(24, beans.size());
assertEquals(26, beans.size());
}

@Test
Expand All @@ -98,7 +98,7 @@ void testMatchingBeansForObject() throws Exception {
List<Bean> beans = result.get(5, TimeUnit.SECONDS);

assertNotNull(beans);
assertEquals(23, beans.size());
assertEquals(25, beans.size());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@Import(SymbolProviderTestConf.class)
public class SpringMetamodelIndexingTest {

private static final int NO_OF_EXPECTED_BEANS = 24;
private static final int NO_OF_EXPECTED_BEANS = 26;

@Autowired private BootLanguageServerHarness harness;
@Autowired private JavaProjectFinder projectFinder;
Expand Down

0 comments on commit d43f16a

Please sign in to comment.