Skip to content

Commit

Permalink
Remove trailing whitespaces in text blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
shivanisky committed Jun 27, 2024
1 parent e705292 commit ab1182b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ void test() {
myObject.wait(1L);
myObject.wait();
verify(myObject).wait(anyLong());
verify(myObject).wait();
verify(myObject).wait();
}
}
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class MyTest {
Object myObject;
void test() {
myObject.wait(10L, 10);
myObject.wait(10L, 10);
new Verifications() {{
myObject.wait(anyLong, anyInt);
}};
Expand Down Expand Up @@ -110,7 +110,7 @@ void test() {
myObject.wait(10L, 10);
new Verifications() {{
myObject.wait();
}};
}};
}
}
""",
Expand Down Expand Up @@ -176,7 +176,7 @@ void test() {
new Verifications() {{
myObject.getSomeField((List<String>) any);
myObject.getSomeOtherField((Object) any);
}};
}};
}
}
""",
Expand Down Expand Up @@ -295,7 +295,7 @@ void test() {
myObject.getSomeField("foo", "bar", bazz, 10L);
new Verifications() {{
myObject.getSomeField("foo", anyString, bazz, 10L);
}};
}};
}
}
""",
Expand Down Expand Up @@ -360,7 +360,7 @@ void test() {
myObject.getSomeField("foo");
myObject.getString();
new Verifications() {{
myObject.getSomeField(anyString);
myObject.getSomeField(anyString);
myObject.getString();
}};
}
Expand All @@ -380,10 +380,10 @@ class MyTest {
void test() {
String a = "a";
String s = "s";
String s = "s";
myObject.getSomeField("foo");
myObject.getString();
verify(myObject).getSomeField(anyString());
verify(myObject).getSomeField(anyString());
verify(myObject).getString();
}
}
Expand Down Expand Up @@ -418,11 +418,11 @@ class MyTest {
MyObject myObject;
void test() {
String a = "a";
String a = "a";
myObject.getSomeField("foo");
new Verifications() {{
myObject.getSomeField(anyString);
}};
}};
}
}
""",
Expand Down Expand Up @@ -474,7 +474,7 @@ void test() {
new Verifications() {{
myObject.wait(anyLong, anyInt);
times = 3;
}};
}};
}
}
""",
Expand Down Expand Up @@ -690,7 +690,7 @@ void test() {
myOtherObject.getSomeObjectField();
myObject.wait(anyLong, anyInt);
myOtherObject.getSomeStringField(anyString, anyLong);
}};
}};
}
}
""",
Expand Down Expand Up @@ -743,7 +743,7 @@ class MyTest {
void test() {
myObject.wait();
new Verifications() {{
new Verifications() {{
myObject.wait();
Expand Down

0 comments on commit ab1182b

Please sign in to comment.