From 9bd1ea0ff940c620460c5181c38541fcd9386483 Mon Sep 17 00:00:00 2001 From: HÃ¥kon Hallingstad Date: Wed, 10 Apr 2019 23:43:18 +0200 Subject: Use AthenzIdentity instead of AthensService --- .../src/test/java/com/yahoo/vespa/athenz/utils/SiaUtilsTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vespa-athenz/src/test') diff --git a/vespa-athenz/src/test/java/com/yahoo/vespa/athenz/utils/SiaUtilsTest.java b/vespa-athenz/src/test/java/com/yahoo/vespa/athenz/utils/SiaUtilsTest.java index f69e937f294..0e6aff1eeca 100644 --- a/vespa-athenz/src/test/java/com/yahoo/vespa/athenz/utils/SiaUtilsTest.java +++ b/vespa-athenz/src/test/java/com/yahoo/vespa/athenz/utils/SiaUtilsTest.java @@ -1,6 +1,7 @@ // Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.vespa.athenz.utils; +import com.yahoo.vespa.athenz.api.AthenzIdentity; import com.yahoo.vespa.athenz.api.AthenzService; import org.junit.Rule; import org.junit.Test; @@ -35,7 +36,7 @@ public class SiaUtilsTest { AthenzService barService = new AthenzService("my.domain.bar"); Files.createFile(SiaUtils.getPrivateKeyFile(siaRoot, barService)); - List siaIdentities = SiaUtils.findSiaServices(siaRoot); + List siaIdentities = SiaUtils.findSiaServices(siaRoot); assertThat(siaIdentities.size(), equalTo(2)); assertThat(siaIdentities, hasItem(fooService)); assertThat(siaIdentities, hasItem(barService)); -- cgit v1.2.3