Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
minhnhatdeii committed Dec 16, 2024
1 parent 6648867 commit d7eb3a2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class DefaultHomeScreenRepo : HomeScreenRepo {
val request = Request.Builder()
.url("https://splitbeat-vocal-remover-music-splitter.p.rapidapi.com/Upload_audio")
.post(requestBody)
.addHeader("x-rapidapi-key", "89644839e0mshcae86286ffb46fcp1e2f10jsn5dacb407fc3b")
.addHeader("x-rapidapi-key", "eeb6435659mshc336b23616278efp1f1318jsn9ff087024dd7")
.addHeader("x-rapidapi-host", "splitbeat-vocal-remover-music-splitter.p.rapidapi.com")
.addHeader("Content-Type", "multipart/form-data; boundary=---011000010111000001101001")
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,4 @@ class SongCardTest {
var song = Song("1", "Conditionally", "Katy Perry", "imageResId", "url");
assertEquals(song.contains("Taylor"), false);
}

@Test
fun testIgnoreCaseFalse() {
// Test the SongCard
var song = Song("1", "Conditionally", "Katy Perry", "imageResId", "url");
assertEquals(false, song.contains("perry", ignoreCase = false));
}
}

0 comments on commit d7eb3a2

Please sign in to comment.