Skip to content

Commit 3072683

Browse files
pxpmfreekmurze
authored andcommittedJan 27, 2025·
remove the only() from tests
·
9.3.49.2.5
1 parent c0ae725 commit 3072683

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/Config/ConfigTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
expect($config->backup->destination)->toBeInstanceOf(DestinationConfig::class);
4646
expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFAULT);
47-
})->only();
47+
});
4848

4949
it('merges the published config file with package config file and preserve published config values', function () {
5050
config()->set('backup.backup.destination', ['compression_method' => ZipArchive::CM_DEFLATE]);
@@ -53,4 +53,4 @@
5353

5454
expect($config->backup->destination)->toBeInstanceOf(DestinationConfig::class);
5555
expect($config->backup->destination->compressionMethod)->toBe(ZipArchive::CM_DEFLATE);
56-
})->only();
56+
});

0 commit comments

Comments
 (0)
Please sign in to comment.