Skip to content

Commit

Permalink
fix: test build 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
sujeong000 committed Dec 1, 2021
1 parent aca6d33 commit cbce413
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class AlarmSettingViewModelTests: XCTestCase {
arsId: "11111",
routeType: RouteType.mainLine,
busName: "11")
let expectation = expectation(description: "AlarmSettingViewModel에 busArriveInfos가 저장되는지 확인")
let expectation = self.expectation(description: "AlarmSettingViewModel에 busArriveInfos가 저장되는지 확인")
let expectedFirstArriveInfo = self.firstArriveInfo
let expectedSecondArriveInfo = self.secondArriveInfo
let expectedResult = AlarmSettingBusArriveInfos(arriveInfos: [expectedFirstArriveInfo, expectedSecondArriveInfo], changedByTimer: false)
Expand Down Expand Up @@ -134,7 +134,7 @@ class AlarmSettingViewModelTests: XCTestCase {
arsId: "11111",
routeType: RouteType.mainLine,
busName: "11")
let expectation = expectation(description: "AlarmSettingViewModel에 busArriveInfos가 저장되는지 확인")
let expectation = self.expectation(description: "AlarmSettingViewModel에 busArriveInfos가 에러를 리턴하는지 확인")

alarmSettingVieWModel.refresh()
alarmSettingVieWModel.$networkError
Expand Down

0 comments on commit cbce413

Please sign in to comment.