Skip to content

Commit

Permalink
fixing assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
aludwiko committed Jan 17, 2025
1 parent d7f86b4 commit 1558c36
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

package akkajavasdk;

import akka.javasdk.http.StrictResponse;
import akka.javasdk.testkit.TestKit;
import akka.javasdk.testkit.TestKitSupport;
import akkajavasdk.components.eventsourcedentities.counter.Counter;
Expand Down Expand Up @@ -66,7 +65,7 @@ public void verifyCounterEventSourcedDeletion() {
await(client.method(CounterEntity::delete).invokeAsync());

var isDeleted2 = await(client.method(CounterEntity::getDeleted).invokeAsync());
assertThat(isDeleted2).isFalse();
assertThat(isDeleted2).isTrue();
}

@Test
Expand Down

0 comments on commit 1558c36

Please sign in to comment.