From 2cf747cb89522a25c3b2f0ee4024d05cf28da0f4 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Wed, 14 Jun 2023 15:57:31 +0200 Subject: [PATCH] Fix the tests --- milli/src/index.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/milli/src/index.rs b/milli/src/index.rs index 29d602330..dcfcc0730 100644 --- a/milli/src/index.rs +++ b/milli/src/index.rs @@ -1497,9 +1497,9 @@ pub(crate) mod tests { db_snap!(index, field_distribution, @r###" - age 1 - id 2 - name 2 + age 1 | + id 2 | + name 2 | "### ); @@ -1517,9 +1517,9 @@ pub(crate) mod tests { db_snap!(index, field_distribution, @r###" - age 1 - id 2 - name 2 + age 1 | + id 2 | + name 2 | "### ); @@ -1533,9 +1533,9 @@ pub(crate) mod tests { db_snap!(index, field_distribution, @r###" - has_dog 1 - id 2 - name 2 + has_dog 1 | + id 2 | + name 2 | "### ); }