Skip to content

Commit b4b976b

Browse files
committed
style: MissionViewModel에서 사용하는 호선 테스트 변수 이름 수정
1 parent 307d7df commit b4b976b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

presentation/src/main/java/com/stop/ui/mission/MissionViewModel.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class MissionViewModel @Inject constructor(
141141
throw AlreadyHandledException()
142142
}
143143

144-
return getSubwayTrainNowStationUseCase(lastTimeValue, TEST_SUBWAY_NUMER)
144+
return getSubwayTrainNowStationUseCase(lastTimeValue, TEST_SUBWAY_LINE_NUMBER)
145145
}
146146

147147
private suspend fun getNowStationLocation() = withContext(Dispatchers.Main) {
@@ -165,7 +165,7 @@ class MissionViewModel @Inject constructor(
165165
TEST_SUBWAY_LONG,
166166
TEST_SUBWAY_LAT
167167
),
168-
TEST_SUBWAY_NUMER.toString() + LINE,
168+
TEST_SUBWAY_LINE_NUMBER.toString() + LINE,
169169
startSubwayStation.dropLast(1), //"역" 버리기
170170
TEST_END_SUBWAY_STATION
171171
)
@@ -192,7 +192,7 @@ class MissionViewModel @Inject constructor(
192192
private const val TEST_BUS_540_ID = "100100083"
193193
private var TIME_TEST = 0
194194

195-
private const val TEST_SUBWAY_NUMER = 4
195+
private const val TEST_SUBWAY_LINE_NUMBER = 4
196196
private const val LINE = "호선" //임시로.. 종성님이 어떻게 넘겨주시느냐에 따라 달림
197197

198198
private const val TEST_SUBWAY_LAT = "37.30973177"

0 commit comments

Comments
 (0)