You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2022/03/24 11:48:40 UTC

[GitHub] [accumulo] milleruntime commented on a change in pull request #2588: Convert monitor module tests to JUnit5

milleruntime commented on a change in pull request #2588:
URL: https://github.com/apache/accumulo/pull/2588#discussion_r834219261



##########
File path: server/monitor/src/test/java/org/apache/accumulo/monitor/it/WebViewsIT.java
##########
@@ -132,7 +132,7 @@ public void testGetTablesConstraintPassing() throws Exception {
     // response.
     // Our silly HashMapWriter registered in the configure method gets wired in and used here.
     Response output = target("tables/foo").request().get();
-    assertEquals("should return status 200", 200, output.getStatus());
+    assertEquals(200, output.getStatus(), "should return status 200");

Review comment:
       They didn't change the parameters did they? Or was this test using the incorrect ones?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org