Skip to content

Commit 2905a80

Browse files
committed
Fix error caused by merging multiple PRs.
1 parent 4b57862 commit 2905a80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firebase-ml-modeldownloader/src/test/java/com/google/firebase/ml/modeldownloader/internal/FirebaseMlLoggerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public void logModelInfoRetrieverFailure_noHttpError() {
228228
.setErrorCode(ErrorCode.MODEL_INFO_DOWNLOAD_UNSUCCESSFUL_HTTP_STATUS)
229229
.setDownloadStatus(DownloadStatus.MODEL_INFO_RETRIEVAL_FAILED)
230230
.build())
231-
.setSystemInfo(SYSTEM_INFO)
231+
.setSystemInfo(systemInfo)
232232
.build()));
233233
verify(mockStatsSender, Mockito.times(1)).sendEvent(any());
234234
verify(mockSharedPreferencesUtil, never()).setModelDownloadCompleteTimeMs(any(), eq(2500L));
@@ -255,7 +255,7 @@ public void logModelInfoRetrieverFailure_withHttpError() {
255255
.setDownloadStatus(DownloadStatus.MODEL_INFO_RETRIEVAL_FAILED)
256256
.setDownloadFailureStatus(FirebaseMlException.INVALID_ARGUMENT)
257257
.build())
258-
.setSystemInfo(SYSTEM_INFO)
258+
.setSystemInfo(systemInfo)
259259
.build()));
260260
verify(mockStatsSender, Mockito.times(1)).sendEvent(any());
261261
verify(mockSharedPreferencesUtil, never()).setModelDownloadCompleteTimeMs(any(), eq(2500L));

0 commit comments

Comments
 (0)