Skip to content

Commit

Permalink
fix: fix plugin tests [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilou88 committed May 29, 2023
1 parent 325e6f8 commit 9c9745b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ describe('nx-micronaut-gradle e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down Expand Up @@ -387,7 +387,7 @@ describe('nx-micronaut-gradle e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down Expand Up @@ -581,7 +581,7 @@ describe('nx-micronaut-gradle e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down Expand Up @@ -1185,7 +1185,7 @@ describe('nx-micronaut-gradle e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down Expand Up @@ -392,7 +392,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down Expand Up @@ -588,7 +588,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down Expand Up @@ -1198,7 +1198,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
expect(buildGradle.includes('war')).toBeTruthy();
expect(
buildGradle.includes(
'org.springframework.micronaut:spring-boot-starter-tomcat'
'org.springframework.boot:spring-boot-starter-tomcat'
)
).toBeTruthy();

Expand Down

0 comments on commit 9c9745b

Please sign in to comment.