Skip to content

Commit

Permalink
[chore] fixed some java version/github actions related build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasstamann committed Dec 11, 2024
1 parent f2fc768 commit 0c95831
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default_temurin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest,macos-latest,windows-latest ]
java: [ '8', '11', '17', '21' ]
java: [ '11', '17', '21' ]

steps:
- name: Checkout Code
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public void test_getOuterType() {
MatcherAssert.assertThat(outerType.get().getQualifiedName(), Matchers.is(TypeElementWrapperTest.class.getCanonicalName()));

outerType = outerType.get().getOuterType();
MatcherAssert.assertThat(outerType.isEmpty(), Matchers.is(true));
MatcherAssert.assertThat(outerType.isPresent(), Matchers.is(false));

MatcherAssert.assertThat(unit.getOuterTopLevelType().get().getQualifiedName(), Matchers.is(TypeElementWrapperTest.class.getCanonicalName()));

Expand Down

0 comments on commit 0c95831

Please sign in to comment.