Skip to content
This repository was archived by the owner on May 27, 2022. It is now read-only.

Commit 792d9b5

Browse files
committed
Restore commented test by mistake
1 parent 215eaf0 commit 792d9b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/CompressAndEncryptAdapterTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function fetching_the_mime_type_of_an_svg_file(): void
112112
}
113113

114114
/**
115-
* Delete this tests once https://github.com/thephpleague/flysystem/pull/1375 is released.
115+
* Delete this test once https://github.com/thephpleague/flysystem/pull/1375 is released.
116116
*
117117
* @test
118118
*/
@@ -132,7 +132,7 @@ public function writing_a_file_with_a_stream(): void
132132
}
133133

134134
/**
135-
* Delete this tests once https://github.com/thephpleague/flysystem/pull/1375 is released.
135+
* Delete this test once https://github.com/thephpleague/flysystem/pull/1375 is released.
136136
*
137137
* @test
138138
*/
@@ -199,10 +199,10 @@ public function reading_multiple_files(): void
199199
{
200200
$adapter = $this->adapter();
201201
$this->givenWeHaveAnExistingFile('path1.txt', '123');
202-
// $this->givenWeHaveAnExistingFile('path2.txt', '456');
202+
$this->givenWeHaveAnExistingFile('path2.txt', '456');
203203

204204
static::assertSame('123', $adapter->read('path1.txt'));
205-
// static::assertSame('456', $adapter->read('path2.txt'));
205+
static::assertSame('456', $adapter->read('path2.txt'));
206206
}
207207

208208
protected static function createFilesystemAdapter(): FilesystemAdapter

0 commit comments

Comments
 (0)