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 {
64
64
@Test
65
65
fun testUploadShouldNotCrash () = runBlockingTest {
66
66
val data = createTestData()
67
- val ref = storage.reference(" test" ).child(" testFile .txt" )
67
+ val ref = storage.reference(" test" ).child(" testUploadShouldNotCrash .txt" )
68
68
ref.putData(data)
69
69
}
70
70
71
71
@Test
72
72
fun testUploadMetadata () = runBlockingTest {
73
73
val data = createTestData()
74
- val ref = storage.reference(" test" ).child(" testFile .txt" )
74
+ val ref = storage.reference(" test" ).child(" testUploadMetadata .txt" )
75
75
val metadata = storageMetadata {
76
76
contentType = " text/plain"
77
77
}
@@ -87,7 +87,7 @@ class FirebaseStorageTest {
87
87
@Test
88
88
fun testUploadCustomMetadata () = runBlockingTest {
89
89
val data = createTestData()
90
- val ref = storage.reference(" test" ).child(" testFile .txt" )
90
+ val ref = storage.reference(" test" ).child(" testUploadCustomMetadata .txt" )
91
91
val metadata = storageMetadata {
92
92
contentType = " text/plain"
93
93
setCustomMetadata(" key" , " value" )
You can’t perform that action at this time.
0 commit comments