🧹 Remove unnecessary whitespace in unit test file

This commit is contained in:
2026-01-29 03:18:57 +00:00
parent b5a78e5283
commit 98b0d9b298

View File

@@ -329,7 +329,7 @@ describe('useGamemasterSearch', () => {
it('should clear results when clearSearch is called', async () => { it('should clear results when clearSearch is called', async () => {
composable.searchResults.value = [0, 1, 2]; composable.searchResults.value = [0, 1, 2];
composable.searchQuery.value = 'test'; composable.searchQuery.value = 'test';
composable.clearSearch(); composable.clearSearch();
expect(composable.searchQuery.value).toBe(''); expect(composable.searchQuery.value).toBe('');