Skip to content

Commit

Permalink
try fix kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
Sajjon committed Jan 27, 2025
1 parent 79ef5a7 commit c36de91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class ProfileTest : SampleTestable<Profile> {

@Test
fun testCheckIfProfileJsonContainsLegacyP2PLinksWhenP2PLinksArePresent() {
val json = File("../../" + "fixtures/vector/only_plaintext_profile_snapshot_version_100.json").readText()
val json = File("../../" + "fixtures/models/profile/only_plaintext_profile_snapshot_version_100.json").readText()
assertEquals(
true,
Profile.checkIfProfileJsonContainsLegacyP2PLinks(json)
Expand All @@ -143,7 +143,7 @@ class ProfileTest : SampleTestable<Profile> {

@Test
fun testCheckIfEncryptedProfileJsonContainsLegacyP2PLinksWhenP2PLinksArePresent() {
val json = File("../../" + "fixtures/vector/profile_encrypted_by_password_of_babylon.json").readText()
val json = File("../../" + "fixtures/models/profile/profile_encrypted_by_password_of_babylon.json").readText()
assertEquals(
true,
Profile.checkIfEncryptedProfileJsonContainsLegacyP2PLinks(json, "babylon")
Expand Down

0 comments on commit c36de91

Please sign in to comment.