Skip to content

Commit

Permalink
Remove unnecessary annotations from ITImplicitNamespaces (#6678)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimas-b authored Apr 25, 2023
1 parent d8f3e47 commit ae86379
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@

import static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestMethodOrder;
import org.junit.jupiter.api.extension.ExtendWith;
import org.projectnessie.client.api.NessieApiV1;
import org.projectnessie.model.Branch;
Expand All @@ -35,15 +32,13 @@
import org.projectnessie.tools.compatibility.internal.NessieUpgradesExtension;

@ExtendWith(NessieUpgradesExtension.class)
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
@NessieServerProperty(name = "nessie.store.validate.namespaces", value = "false")
public class ITImplicitNamespaces {

@NessieVersion Version version;
@NessieAPI NessieApiV1 api;

@Test
@Order(101)
void createTableWithImplicitNamespaceReference() throws Exception {
Branch main = api.getDefaultBranch();
Branch versionBranch = Branch.of("version-implicit-ns-" + version, main.getHash());
Expand Down

0 comments on commit ae86379

Please sign in to comment.