Skip to content

Commit 7bcc098

Browse files
committed
style: fix indentation
1 parent 4d210d7 commit 7bcc098

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/AbstractStructReaderTypesTest.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -312,13 +312,13 @@ public static Collection<Object[]> parameters() {
312312
"getDate",
313313
Collections.singletonList("getValue")
314314
},
315-
{
316-
Type.uuid(),
317-
"getUuidInternal",
318-
UUID.randomUUID(),
319-
"getUuid",
320-
Collections.singletonList("getValue")
321-
},
315+
{
316+
Type.uuid(),
317+
"getUuidInternal",
318+
UUID.randomUUID(),
319+
"getUuid",
320+
Collections.singletonList("getValue")
321+
},
322322
{
323323
Type.array(Type.bool()),
324324
"getBooleanArrayInternal",
@@ -441,13 +441,13 @@ public static Collection<Object[]> parameters() {
441441
"getDateList",
442442
Collections.singletonList("getValue")
443443
},
444-
{
445-
Type.array(Type.uuid()),
446-
"getUuidListInternal",
447-
Arrays.asList(UUID.randomUUID(), UUID.randomUUID()),
448-
"getUuidList",
449-
Collections.singletonList("getValue")
450-
},
444+
{
445+
Type.array(Type.uuid()),
446+
"getUuidListInternal",
447+
Arrays.asList(UUID.randomUUID(), UUID.randomUUID()),
448+
"getUuidList",
449+
Collections.singletonList("getValue")
450+
},
451451
{
452452
Type.array(Type.struct(StructField.of("f1", Type.int64()))),
453453
"getStructListInternal",

google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITUuidTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
import org.junit.runner.RunWith;
5252
import org.junit.runners.Parameterized;
5353

54+
/**
55+
* Class for running integration tests for UUID data type.
56+
* It tests read and write operations involving UUID as key and non-key columns.
57+
*/
5458
@Category(ParallelIntegrationTest.class)
5559
@RunWith(Parameterized.class)
5660
public class ITUuidTest {

0 commit comments

Comments
 (0)