Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/build.yml
  • Loading branch information
vidi42 committed Apr 19, 2024
2 parents 7ae1235 + 6f7455d commit 8686240
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
fetch-depth: 0

- name: Setup Java
- name: Setup - Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand All @@ -35,7 +35,7 @@ jobs:
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
mvn clean verify test jacoco:report-aggregate package sonar:sonar \
mvn --batch-mode sonar:sonar \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.organization=ehrbase \
-Dsonar.projectKey=ehrbase_openEHR_SDK \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ void buildChildValuesOrdinalOnlySymbolNullSafe() {
void buildChildValuesWithSymbol() {

Map<String, Object> childValues = buildChildValues(
"some_other/current_activity/ordinal", new DvOrdinal(42L, new DvCodedText("lorem ipsum", "PWVGUTHASM")));
"some_other/current_activity/ordinal",
new DvOrdinal(42L, new DvCodedText("lorem ipsum", "PWVGUTHASM")));
assertThat(childValues)
.hasSize(3)
.containsEntry("some_other/current_activity/ordinal|ordinal", 42L)
Expand Down

0 comments on commit 8686240

Please sign in to comment.