Skip to content

Commit afe24bc

Browse files
committed
Update Maven command and fix airline code
1 parent 1d3631a commit afe24bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
id: run
4444
run: |
4545
chmod +x mvnw
46-
./mvnw package -B
46+
./mvnw clean install -DskipTests=false -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V -e
4747
4848
- name: Report Status
4949
if: always()

src/test/java/org/couchbase/quickstart/springboot/controllers/AirlineIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void testGetAirline() {
7676
Airline airline = response.getBody();
7777
assert airline != null;
7878
assertThat(airline).isEqualTo(
79-
new Airline("10", "airline", "40-Mile Air", "Q5", "MLB", "MILE-AIR", "United States"));
79+
new Airline("10", "airline", "40-Mile Air", "Q5", "MLA", "MILE-AIR", "United States"));
8080
}
8181

8282
@Test

0 commit comments

Comments
 (0)