Skip to content

Commit

Permalink
Fixed import
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldavidw committed Aug 7, 2024
1 parent 1e9429c commit 5dae63b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ChronosTests/Import/2FAS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ final class TwoFASTests: XCTestCase {
]

let importService = ImportService()
let tokens = importService.importFrom2FAS(json: json)!
let tokens = importService.importFromTwoFAS(json: json)!

XCTAssertEqual(tokens.count, 8)

Expand Down Expand Up @@ -482,7 +482,7 @@ final class TwoFASTests: XCTestCase {
]

let importService = ImportService()
let tokens = importService.importFrom2FAS(json: json)!
let tokens = importService.importFromTwoFAS(json: json)!

XCTAssertEqual(tokens.count, 4)

Expand Down Expand Up @@ -648,7 +648,7 @@ final class TwoFASTests: XCTestCase {
]

let importService = ImportService()
let tokens = importService.importFrom2FAS(json: json)
let tokens = importService.importFromTwoFAS(json: json)

XCTAssertNil(tokens)
}
Expand Down Expand Up @@ -695,7 +695,7 @@ final class TwoFASTests: XCTestCase {
]

let importService = ImportService()
let tokens = importService.importFrom2FAS(json: json)
let tokens = importService.importFromTwoFAS(json: json)

XCTAssertNil(tokens)
}
Expand Down

0 comments on commit 5dae63b

Please sign in to comment.