Skip to content

Commit

Permalink
syntactic sugar
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Jul 3, 2023
1 parent bb605a4 commit 442c3a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-java

- uses: actions/checkout@v2
- name: Starting MIW, Keycloak and Postgres Servers
run: |
docker compose -f edc-tests/e2e-tests/src/test/resources/docker-compose.yml up -d
# must CD into the directory, otherwise volume mappings are wrong
cd edc-tests/e2e-tests/src/test/resources
docker compose -f docker-compose.yml up -d
- name: Run MIW E2E tests
run: ./gradlew test -DincludeTags="MiwIntegrationTest"
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void setup() {

var mock = mock(Monitor.class);
var httpClient = new EdcHttpClientImpl(new OkHttpClient.Builder().build(), RetryPolicy.ofDefaults(), mock);
MiwOauth2ClientConfiguration config = MiwOauth2ClientConfiguration.Builder.newInstance()
var config = MiwOauth2ClientConfiguration.Builder.newInstance()
.clientId("miw_private_client")
.clientSecret("miw_private_client")
.tokenUrl(OAUTH_TOKEN_URL)
Expand Down

0 comments on commit 442c3a7

Please sign in to comment.