Skip to content

Commit 27ff382

Browse files
committed
test(ofrep): follow the provider-tck -> tck rename
Import-path and coordinate churn only: the artifact is dev.openfeature.contrib.tools:tck, the version range starts at 0.1.0, and the four imports come from dev.openfeature.contrib.tools.tck. No behavioural change, and no change to what is declared or withheld. Signed-off-by: Simon Schrottner <simon.schrottner@flagsmith.com>
1 parent 537b60f commit 27ff382

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

providers/ofrep/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
<url>https://openfeature.dev</url>
1919

2020
<properties>
21-
<!-- Match any provider-tck version locally; CI resolves it from the reactor -->
22-
<provider-tck.version>[0.0.1,)</provider-tck.version>
21+
<!-- Match any tck version locally; CI resolves it from the reactor -->
22+
<tck.version>[0.1.0,)</tck.version>
2323
</properties>
2424

2525
<developers>
@@ -94,8 +94,8 @@
9494
-->
9595
<dependency>
9696
<groupId>dev.openfeature.contrib.tools</groupId>
97-
<artifactId>provider-tck</artifactId>
98-
<version>${provider-tck.version}</version>
97+
<artifactId>tck</artifactId>
98+
<version>${tck.version}</version>
9999
<scope>test</scope>
100100
</dependency>
101101
</dependencies>

providers/ofrep/src/test/java/dev/openfeature/contrib/providers/ofrep/e2e/OfrepTckTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
import dev.openfeature.contrib.providers.ofrep.OfrepProvider;
44
import dev.openfeature.contrib.providers.ofrep.OfrepProviderOptions;
5-
import dev.openfeature.contrib.tools.providertck.BackendEndpoint;
6-
import dev.openfeature.contrib.tools.providertck.Capability;
7-
import dev.openfeature.contrib.tools.providertck.ContainerizedProviderTckTest;
8-
import dev.openfeature.contrib.tools.providertck.KnownDeviation;
5+
import dev.openfeature.contrib.tools.tck.BackendEndpoint;
6+
import dev.openfeature.contrib.tools.tck.Capability;
7+
import dev.openfeature.contrib.tools.tck.ContainerizedProviderTckTest;
8+
import dev.openfeature.contrib.tools.tck.KnownDeviation;
99
import dev.openfeature.sdk.FeatureProvider;
1010
import java.io.File;
1111
import java.time.Duration;
@@ -245,7 +245,7 @@ public FeatureProvider createUnavailableProvider() {
245245
* accompanies it, and then discards both.
246246
*
247247
* <p>It is therefore recorded as a
248-
* {@link dev.openfeature.contrib.tools.providertck.KnownDeviation} rather than left as a bare
248+
* {@link dev.openfeature.contrib.tools.tck.KnownDeviation} rather than left as a bare
249249
* omission — see {@link #knownDeviations()}. That is the opposite call from
250250
* {@code @numeric-coercion} above, and the difference is where the rule lives: numeric coercion
251251
* is a rule Appendix F borrowed from flagd's ADR and that no specification states, whereas

0 commit comments

Comments
 (0)