File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
firebase-storage/src/commonTest/kotlin/dev/gitlive/firebase/storage Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,14 +64,14 @@ class FirebaseStorageTest {
6464 @Test
6565 fun testUploadShouldNotCrash () = runBlockingTest {
6666 val data = createTestData()
67- val ref = storage.reference(" test" ).child(" testFile .txt" )
67+ val ref = storage.reference(" test" ).child(" testUploadShouldNotCrash .txt" )
6868 ref.putData(data)
6969 }
7070
7171 @Test
7272 fun testUploadMetadata () = runBlockingTest {
7373 val data = createTestData()
74- val ref = storage.reference(" test" ).child(" testFile .txt" )
74+ val ref = storage.reference(" test" ).child(" testUploadMetadata .txt" )
7575 val metadata = storageMetadata {
7676 contentType = " text/plain"
7777 }
@@ -87,7 +87,7 @@ class FirebaseStorageTest {
8787 @Test
8888 fun testUploadCustomMetadata () = runBlockingTest {
8989 val data = createTestData()
90- val ref = storage.reference(" test" ).child(" testFile .txt" )
90+ val ref = storage.reference(" test" ).child(" testUploadCustomMetadata .txt" )
9191 val metadata = storageMetadata {
9292 contentType = " text/plain"
9393 setCustomMetadata(" key" , " value" )
You can’t perform that action at this time.
0 commit comments