Skip to content

Commit

Permalink
Merge pull request #32297 from brunobat/fix_tests_on_intellij
Browse files Browse the repository at this point in the history
Fix intellij tests
  • Loading branch information
mkouba authored Mar 31, 2023
2 parents d73bbd6 + 968d1c5 commit 68a26b1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,4 @@ public class BeanWithIncorrectInject {
@com.oracle.svm.core.annotate.Inject
BeanManager bm3;

@org.gradle.internal.impldep.javax.inject.Inject
BeanManager bm4;

}
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ public class WrongInjectTest {
assertTrue(rootCause.getMessage().contains(
"@com.oracle.svm.core.annotate.Inject declared on io.quarkus.arc.test.wrongannotations.BeanWithIncorrectInject.bm3, use @jakarta.inject.Inject instead"),
t.toString());
assertTrue(rootCause.getMessage().contains(
"@org.gradle.internal.impldep.javax.inject.Inject declared on io.quarkus.arc.test.wrongannotations.BeanWithIncorrectInject.bm4, use @jakarta.inject.Inject instead"),
t.toString());
assertTrue(rootCause.getMessage().contains(
"@javax.inject.Inject declared on io.quarkus.arc.test.wrongannotations.WrongInjectTest.beanManager, use @jakarta.inject.Inject instead"),
t.toString());
Expand Down

0 comments on commit 68a26b1

Please sign in to comment.