Skip to content

Commit

Permalink
Eh, remove the result type
Browse files Browse the repository at this point in the history
  • Loading branch information
adambollen committed Dec 17, 2024
1 parent 7b4f395 commit 5153c84
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/java/com/fauna/e2e/E2EFeedsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ public void manualFeed() {
assertEquals(50, productUpdates.size());
assertEquals(25, pageCount);

client.query(fql("Product.create({name:\"newProduct\",quantity:123})"),
Product.class);
client.query(fql("Product.create({name:\"newProduct\",quantity:123})"));

FeedOptions newOptions =
FeedOptions.builder().cursor(lastPageCursor).pageSize(2)
Expand Down

0 comments on commit 5153c84

Please sign in to comment.