Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
clintropolis committed Aug 17, 2024
1 parent 90ae2bb commit 7932eaf
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ public void testLoggingMDC() throws Exception
Assert.assertEquals("false", map.get("hasFilters"));
Assert.assertEquals("fake", map.get("queryType"));
Assert.assertEquals("some.host.tld", map.get("remoteAddr"));
Assert.assertEquals("false", map.get("descending"));
Assert.assertEquals("false", map.get("isNested"));
Assert.assertNull(map.get("foo"));
}
Expand All @@ -235,7 +234,6 @@ public void testLoggingMDCContext() throws Exception
Assert.assertEquals("false", map.get("hasFilters"));
Assert.assertEquals("fake", map.get("queryType"));
Assert.assertEquals("some.host.tld", map.get("remoteAddr"));
Assert.assertEquals("false", map.get("descending"));
Assert.assertEquals("false", map.get("isNested"));
Assert.assertEquals("bar", map.get("foo"));
}
Expand All @@ -256,7 +254,6 @@ public void testNestedQueryLoggingMDC() throws Exception
Assert.assertEquals("false", map.get("hasFilters"));
Assert.assertEquals("fake", map.get("queryType"));
Assert.assertEquals("some.host.tld", map.get("remoteAddr"));
Assert.assertEquals("false", map.get("descending"));
Assert.assertEquals("true", map.get("isNested"));
Assert.assertNull(map.get("foo"));
}
Expand All @@ -278,7 +275,6 @@ public void testNestedNestedQueryLoggingMDC() throws Exception
Assert.assertEquals("fake", map.get("queryType"));
Assert.assertEquals("some.host.tld", map.get("remoteAddr"));
Assert.assertEquals("true", map.get("isNested"));
Assert.assertEquals("false", map.get("descending"));
Assert.assertNull(map.get("foo"));
}

Expand All @@ -299,7 +295,6 @@ public void testUnionQueryLoggingMDC() throws Exception
Assert.assertEquals("false", map.get("hasFilters"));
Assert.assertEquals("fake", map.get("queryType"));
Assert.assertEquals("some.host.tld", map.get("remoteAddr"));
Assert.assertEquals("false", map.get("descending"));
Assert.assertNull(map.get("foo"));
}

Expand Down

0 comments on commit 7932eaf

Please sign in to comment.