File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ class SettingsViewModel: ObservableObject {
46
46
47
47
func privacyPolicyURL( ) -> URL {
48
48
if self . languageCode == " ko " {
49
- return URL ( string: " https://planting-mind .notion.site/48f9b3289a5d4cd999d08955802f8d19 " ) !
49
+ return URL ( string: " https://choieunjoo .notion.site/48f9b3289a5d4cd999d08955802f8d19?pvs=4 " ) !
50
50
} else {
51
- return URL ( string: " https://planting-mind .notion.site/Privacy-Policy-af91fa5d528544ef9a30c1a95ec951c2?pvs=74 " ) !
51
+ return URL ( string: " https://choieunjoo .notion.site/Privacy-Policy-af91fa5d528544ef9a30c1a95ec951c2?pvs=4 " ) !
52
52
}
53
53
}
54
54
Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ final class SettingsViewModelTests: XCTestCase {
60
60
61
61
func test_privacy_policy( ) throws {
62
62
let viewModel = SettingsViewModel ( context: context, languageCode: " ko " )
63
- let expectedURL = try XCTUnwrap ( URL ( string: " https://planting-mind .notion.site/48f9b3289a5d4cd999d08955802f8d19 " ) )
63
+ let expectedURL = try XCTUnwrap ( URL ( string: " https://choieunjoo .notion.site/48f9b3289a5d4cd999d08955802f8d19?pvs=4 " ) )
64
64
XCTAssertEqual ( viewModel. privacyPolicyURL ( ) , expectedURL)
65
65
66
66
let viewModel2 = SettingsViewModel ( context: context, languageCode: " en " )
67
- let expectedURL2 = try XCTUnwrap ( URL ( string: " https://planting-mind .notion.site/Privacy-Policy-af91fa5d528544ef9a30c1a95ec951c2?pvs=74 " ) )
67
+ let expectedURL2 = try XCTUnwrap ( URL ( string: " https://choieunjoo .notion.site/Privacy-Policy-af91fa5d528544ef9a30c1a95ec951c2?pvs=4 " ) )
68
68
XCTAssertEqual ( viewModel2. privacyPolicyURL ( ) , expectedURL2)
69
69
}
70
70
You can’t perform that action at this time.
0 commit comments