Skip to content

Commit 1c31bba

Browse files
fix typo
1 parent 26d3794 commit 1c31bba

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/DependencyInjection/FlysystemExtensionTest.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function provideFilesystems()
4747
*/
4848
public function testFilesystems(string $fsName)
4949
{
50-
$kernel = $this->createFysystemKernel();
50+
$kernel = $this->createFlysystemKernel();
5151
$container = $kernel->getContainer()->get('test.service_container');
5252

5353
$fs = $container->get('flysystem.test.'.$fsName);
@@ -60,7 +60,7 @@ public function testFilesystems(string $fsName)
6060
*/
6161
public function testTaggedCollection(string $fsName)
6262
{
63-
$kernel = $this->createFysystemKernel();
63+
$kernel = $this->createFlysystemKernel();
6464
$container = $kernel->getContainer()->get('test.service_container');
6565

6666
if (!$container->has('storages_tagged_collection')) {
@@ -74,7 +74,7 @@ public function testTaggedCollection(string $fsName)
7474

7575
public function testPublicUrl()
7676
{
77-
$kernel = $this->createFysystemKernel();
77+
$kernel = $this->createFlysystemKernel();
7878
$container = $kernel->getContainer()->get('test.service_container');
7979

8080
$fs = $container->get('flysystem.test.fs_public_url');
@@ -84,7 +84,7 @@ public function testPublicUrl()
8484

8585
public function testPublicUrls()
8686
{
87-
$kernel = $this->createFysystemKernel();
87+
$kernel = $this->createFlysystemKernel();
8888
$container = $kernel->getContainer()->get('test.service_container');
8989

9090
$fs = $container->get('flysystem.test.fs_public_urls');
@@ -96,7 +96,7 @@ public function testPublicUrls()
9696

9797
public function testUrlGenerators()
9898
{
99-
$kernel = $this->createFysystemKernel();
99+
$kernel = $this->createFlysystemKernel();
100100
$container = $kernel->getContainer()->get('test.service_container');
101101

102102
$fs = $container->get('flysystem.test.fs_url_generator');
@@ -107,7 +107,7 @@ public function testUrlGenerators()
107107

108108
public function testReadOnly()
109109
{
110-
$kernel = $this->createFysystemKernel();
110+
$kernel = $this->createFlysystemKernel();
111111
$container = $kernel->getContainer()->get('test.service_container');
112112

113113
$fs = $container->get('flysystem.test.fs_read_only');
@@ -118,7 +118,7 @@ public function testReadOnly()
118118
$fs->write('/path/to/file', 'Unable to write in read only');
119119
}
120120

121-
private function createFysystemKernel(): FlysystemAppKernel
121+
private function createFlysystemKernel(): FlysystemAppKernel
122122
{
123123
(new Dotenv())->populate([
124124
'AWS_BUCKET' => 'bucket-name',

0 commit comments

Comments
 (0)