Skip to content

Commit 04a9f42

Browse files
committed
Chore : Indentation done
1 parent da3fb58 commit 04a9f42

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/test/java/com/contentstack/sdk/TestEntry.java

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class TestEntry {
2121
private Entry entry;
2222
private final String CONTENT_TYPE = Credentials.CONTENT_TYPE;
2323
private final String VARIANT_UID = Credentials.VARIANT_UID;
24-
private static final String[] VARIANT_UIDS = Credentials.VARIANTS_UID ;
25-
24+
private static final String[] VARIANT_UIDS = Credentials.VARIANTS_UID;
25+
2626
@Test
2727
@Order(1)
2828
void entryCallingPrivateModifier() {
@@ -66,24 +66,26 @@ public void onCompletion(ResponseType responseType, Error error) {
6666
});
6767
logger.info("passed..");
6868
}
69+
6970
@Test
70-
void VariantsTestSingleUid(){
71+
void VariantsTestSingleUid() {
7172
entry = stack.contentType(CONTENT_TYPE).entry(entryUid).variants(VARIANT_UID);
7273
entry.fetch(new EntryResultCallBack() {
7374
@Override
7475
public void onCompletion(ResponseType responseType, Error error) {
7576
assertEquals(VARIANT_UID.trim(), entry.getHeaders().get("x-cs-variant-uid"));
76-
System.out.println(entry.toJSON());
77+
System.out.println(entry.toJSON());
7778
}
7879
});
7980
}
81+
8082
@Test
81-
void VariantsTestArray(){
83+
void VariantsTestArray() {
8284
entry = stack.contentType(CONTENT_TYPE).entry(entryUid).variants(VARIANT_UIDS);
8385
entry.fetch(new EntryResultCallBack() {
8486
@Override
8587
public void onCompletion(ResponseType responseType, Error error) {
86-
System.out.println(entry.toJSON());
88+
System.out.println(entry.toJSON());
8789
}
8890
});
8991
}

0 commit comments

Comments
 (0)