We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0bffc commit 77ed895Copy full SHA for 77ed895
tests/Settings/TypoToleranceTest.php
@@ -19,11 +19,13 @@ final class TypoToleranceTest extends TestCase
19
],
20
'disableOnWords' => [],
21
'disableOnAttributes' => [],
22
+ 'disableOnNumbers' => false,
23
];
24
25
protected function setUp(): void
26
{
27
parent::setUp();
28
+
29
$this->index = $this->createEmptyIndex($this->safeIndexName());
30
}
31
@@ -44,6 +46,7 @@ public function testUpdateTypoTolerance(): void
44
46
45
47
48
'disableOnAttributes' => ['title'],
49
+ 'disableOnNumbers' => true,
50
51
$this->index->updateTypoTolerance($newTypoTolerance)->wait();
52
$typoTolerance = $this->index->getTypoTolerance();
0 commit comments