Skip to content

Commit

Permalink
Fixing IT test failure.
Browse files Browse the repository at this point in the history
Signed-off-by: currantw <[email protected]>
  • Loading branch information
currantw committed Dec 11, 2024
1 parent 28ed843 commit 201697b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void test_cidrmatch() throws IOException {
result =
executeQuery(
String.format(
"source=%s | where cidrmatch(host, '1.2.3.0/8') | fields host", TEST_INDEX_WEBLOG));
"source=%s | where cidrmatch(host, '1.2.3.0/24') | fields host", TEST_INDEX_WEBLOG));
verifySchema(result, schema("host", null, "ip"));
verifyDataRows(result, rows("1.2.3.4"), rows("1.2.3.5"));
}
Expand Down

0 comments on commit 201697b

Please sign in to comment.