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 {
462462 assertEquals (KEY1 , projectionEntity .getKey ());
463463 assertTrue (projectionEntity .getNames ().isEmpty ());
464464 assertFalse (keyProjectionResult .hasNext ());
465+ DATASTORE .delete (ENTITY3 .getKey ());
465466 }
466467
467468 @ Test
@@ -663,6 +664,7 @@ public void testGetArrayNoDeferredResults() {
663664 // expected - no such property
664665 }
665666 assertFalse (result .hasNext ());
667+ DATASTORE .delete (ENTITY3 .getKey ());
666668 }
667669
668670 @ Test
@@ -712,6 +714,7 @@ public void testUpdate() {
712714 assertNotEquals (ENTITY3 , entity3 );
713715 DATASTORE .update (entity3 );
714716 assertEquals (entity3 , DATASTORE .get (ENTITY3 .getKey ()));
717+ DATASTORE .delete (ENTITY3 .getKey ());
715718 }
716719
717720 @ Test
You can’t perform that action at this time.
0 commit comments