This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 3045c05 Fix build failure.
3045c05 is described below
commit 3045c05a54d46657f7b71e37ba5f0fc62999bb5f
Author: JamesBognar <[email protected]>
AuthorDate: Mon Jul 13 09:34:03 2020 -0400
Fix build failure.
---
.../java/org/apache/juneau/rest/client2/RestClient_Logging_Test.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/juneau-rest/juneau-rest-client-utest/src/test/java/org/apache/juneau/rest/client2/RestClient_Logging_Test.java
b/juneau-rest/juneau-rest-client-utest/src/test/java/org/apache/juneau/rest/client2/RestClient_Logging_Test.java
index 976f847..3af2a6d 100644
---
a/juneau-rest/juneau-rest-client-utest/src/test/java/org/apache/juneau/rest/client2/RestClient_Logging_Test.java
+++
b/juneau-rest/juneau-rest-client-utest/src/test/java/org/apache/juneau/rest/client2/RestClient_Logging_Test.java
@@ -149,7 +149,7 @@ public class RestClient_Logging_Test {
client().logger(l).logRequests(DetailLevel.SIMPLE,Level.WARNING,null).build().post("/bean",bean).complete();
l.assertLastLevel(Level.WARNING);
l.assertLastMessage().stderr().is("HTTP POST
http://localhost/bean, HTTP/1.1 200 ");
- l.assertContents().is("WARNING: HTTP POST
http://localhost/bean, HTTP/1.1 200 \n");
+ l.assertContents().contains("WARNING: HTTP POST
http://localhost/bean, HTTP/1.1 200 \n");
l.reset();
client().logger(l).logRequests(DetailLevel.FULL,Level.WARNING,null).build().post("/bean",bean).complete();