Skip to content

Commit

Permalink
Change the type of expected doc counts
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Aug 6, 2024
1 parent 34080c7 commit 71513cd
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
DEFAULT_INDEX_IGNORE_LIST = ["test_", ".", "searchguard", "sg7", "security-auditlog", "reindexed-logs"]

EXPECTED_BENCHMARK_DOCS = {
"geonames": {"count": "1000"},
"logs-221998": {"count": "1000"},
"logs-211998": {"count": "1000"},
"logs-231998": {"count": "1000"},
"logs-241998": {"count": "1000"},
"logs-181998": {"count": "1000"},
"logs-201998": {"count": "1000"},
"logs-191998": {"count": "1000"},
"sonested": {"count": "1000"},
"nyc_taxis": {"count": "1000"}
"geonames": {"count": 1000},
"logs-221998": {"count": 1000},
"logs-211998": {"count": 1000},
"logs-231998": {"count": 1000},
"logs-241998": {"count": 1000},
"logs-181998": {"count": 1000},
"logs-201998": {"count": 1000},
"logs-191998": {"count": 1000},
"sonested": {"count": 1000},
"nyc_taxis": {"count": 1000}
}


Expand Down

0 comments on commit 71513cd

Please sign in to comment.