File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
google-cloud-datastore/src/test/java/com/google/cloud/datastore/it Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -462,6 +462,7 @@ public void testRunGqlQueryNoCasting() throws InterruptedException {
462
462
assertEquals (KEY1 , projectionEntity .getKey ());
463
463
assertTrue (projectionEntity .getNames ().isEmpty ());
464
464
assertFalse (keyProjectionResult .hasNext ());
465
+ DATASTORE .delete (ENTITY3 .getKey ());
465
466
}
466
467
467
468
@ Test
@@ -663,6 +664,7 @@ public void testGetArrayNoDeferredResults() {
663
664
// expected - no such property
664
665
}
665
666
assertFalse (result .hasNext ());
667
+ DATASTORE .delete (ENTITY3 .getKey ());
666
668
}
667
669
668
670
@ Test
@@ -712,6 +714,7 @@ public void testUpdate() {
712
714
assertNotEquals (ENTITY3 , entity3 );
713
715
DATASTORE .update (entity3 );
714
716
assertEquals (entity3 , DATASTORE .get (ENTITY3 .getKey ()));
717
+ DATASTORE .delete (ENTITY3 .getKey ());
715
718
}
716
719
717
720
@ Test
You canβt perform that action at this time.
0 commit comments