Skip to content

Commit b0cd682

Browse files
authored
Merge branch 'develop' into development
2 parents 6899299 + 98a5ef3 commit b0cd682

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

docs/filters/available-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,4 +455,4 @@ Allows you to pass a string to use a wire:model.live.debounce.Xms approach
455455
'maxlength' => '25',
456456
])
457457
->setWireDebounce(50)
458-
```
458+
```

tests/Views/Filters/DateTimeFilterTest.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -164,24 +164,6 @@ public function test_can_set_text_filter_wireable_live(): void
164164

165165
$this->assertSame('live.debounce.500ms', self::$filterInstance->getWireableMethod());
166166
$this->assertSame('wire:model.live.debounce.500ms=filterComponents.active', self::$filterInstance->getWireMethod('filterComponents.'.self::$filterInstance->getKey()));
167-
}
168167

169-
public function test_check_if_has_locale(): void
170-
{
171-
$this->assertFalse(self::$filterInstance->hasPillsLocale());
172-
self::$filterInstance->setPillsLocale('fr');
173-
$this->assertTrue(self::$filterInstance->hasPillsLocale());
174-
}
175-
176-
public function test_check_if_can_get_locale(): void
177-
{
178-
$this->assertFalse(self::$filterInstance->hasPillsLocale());
179-
$this->assertSame('en', self::$filterInstance->getPillsLocale());
180-
self::$filterInstance->setPillsLocale('fr');
181-
$this->assertTrue(self::$filterInstance->hasPillsLocale());
182-
$this->assertSame('fr', self::$filterInstance->getPillsLocale());
183-
self::$filterInstance->setPillsLocale('de');
184-
$this->assertSame('de', self::$filterInstance->getPillsLocale());
185-
$this->assertTrue(self::$filterInstance->hasPillsLocale());
186168
}
187169
}

0 commit comments

Comments
 (0)