Skip to content

Commit e652f66

Browse files
committed
lint
1 parent 8a37a8e commit e652f66

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

constructorio-client/src/test/java/io/constructor/client/ConstructorIOTaskTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ public void TaskRequestWithInvalidApiKeyShouldError() throws Exception {
9999
thrown.expect(ConstructorException.class);
100100
thrown.expectMessage(
101101
StringContains.containsString(
102-
"[HTTP 400] You have supplied an invalid `key` or `autocomplete_key`. You can find your key at app.constructor.io/dashboard/accounts/api_integration."));
102+
"[HTTP 400] You have supplied an invalid `key` or `autocomplete_key`. You"
103+
+ " can find your key at"
104+
+ " app.constructor.io/dashboard/accounts/api_integration."));
103105
Task response = constructor.task(request);
104106
}
105107

@@ -111,7 +113,9 @@ public void TaskAsJSONRequestWithInvalidApiKeyShouldError() throws Exception {
111113
thrown.expect(ConstructorException.class);
112114
thrown.expectMessage(
113115
StringContains.containsString(
114-
"[HTTP 400] You have supplied an invalid `key` or `autocomplete_key`. You can find your key at app.constructor.io/dashboard/accounts/api_integration."));
116+
"[HTTP 400] You have supplied an invalid `key` or `autocomplete_key`. You"
117+
+ " can find your key at"
118+
+ " app.constructor.io/dashboard/accounts/api_integration."));
115119
String response = constructor.taskAsJson(request);
116120
}
117121
}

0 commit comments

Comments
 (0)