Skip to content

Commit

Permalink
remove fury data provider
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed May 3, 2024
1 parent 660fa7b commit 97a318a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/fury-core/src/test/java/org/apache/fury/CyclicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static Object[][] fury() {
.toArray(Object[][]::new);
}

@Test(dataProvider = "fury")
@Test
public void testBean(FuryBuilder builder) {
Fury fury = builder.withMetaContextShare(false).withRefTracking(true).build();
for (Object[] objects : beans()) {
Expand All @@ -87,7 +87,7 @@ public void testBean(FuryBuilder builder) {
}
}

@Test(dataProvider = "fury")
@Test
public void testBeanMetaShared(FuryBuilder builder) {
Fury fury = builder.withMetaContextShare(true).withRefTracking(true).build();
for (Object[] objects : beans()) {
Expand Down

0 comments on commit 97a318a

Please sign in to comment.