Skip to content

Commit 8034d11

Browse files
committed
---
yaml --- r: 5891 b: refs/heads/tswast-patch-1 c: cce26a1 h: refs/heads/master i: 5889: 56a39e0 5887: be8ff24
1 parent 69af93d commit 8034d11

5 files changed

Lines changed: 16 additions & 11 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: b08c4590fe39321cc6dc2aacfe9b2f1be27228a1
60+
refs/heads/tswast-patch-1: cce26a1f95c9ee3e0842a34d5d1ea5f728f86887
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/src/test/java/com/google/gcloud/datastore/ListValueTest.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@
1616

1717
package com.google.gcloud.datastore;
1818

19+
import static junit.framework.TestCase.assertFalse;
20+
import static org.junit.Assert.assertEquals;
21+
import static org.junit.Assert.assertTrue;
22+
1923
import com.google.common.collect.ImmutableList;
24+
2025
import org.junit.Test;
2126

2227
import java.util.List;
2328

24-
import static junit.framework.TestCase.assertFalse;
25-
import static org.junit.Assert.assertEquals;
26-
import static org.junit.Assert.assertTrue;
27-
2829
public class ListValueTest {
2930

3031
private static final List<Value<?>> CONTENT = ImmutableList.of(NullValue.of(), StringValue.of("foo"));

branches/tswast-patch-1/src/test/java/com/google/gcloud/datastore/ProjectionEntityTest.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
package com.google.gcloud.datastore;
22

3-
import org.junit.Test;
4-
5-
import static junit.framework.TestCase.*;
3+
import static junit.framework.TestCase.assertEquals;
4+
import static junit.framework.TestCase.assertFalse;
5+
import static junit.framework.TestCase.assertNull;
66
import static org.junit.Assert.assertArrayEquals;
77
import static org.junit.Assert.assertTrue;
88

9+
import org.junit.Test;
10+
911
public class ProjectionEntityTest {
1012

1113
private static final Key KEY = Key.builder("ds1", "k1", "n1").build();

branches/tswast-patch-1/src/test/java/com/google/gcloud/datastore/RawValueTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@
1616

1717
package com.google.gcloud.datastore;
1818

19-
import com.google.api.services.datastore.DatastoreV1;
20-
import org.junit.Test;
21-
2219
import static junit.framework.TestCase.assertFalse;
2320
import static org.junit.Assert.assertEquals;
2421
import static org.junit.Assert.assertTrue;
2522

23+
import com.google.api.services.datastore.DatastoreV1;
24+
25+
import org.junit.Test;
26+
2627
public class RawValueTest {
2728

2829
private static final DatastoreV1.Value CONTENT = StringValue.of("hello").toPb();

branches/tswast-patch-1/src/test/java/com/google/gcloud/datastore/ValueTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import com.google.common.collect.ImmutableMap;
2626
import com.google.common.primitives.Primitives;
2727
import com.google.gcloud.datastore.Value.Type;
28+
2829
import org.junit.Before;
2930
import org.junit.Test;
3031

0 commit comments

Comments
 (0)