Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion testSrc/unit/io/flutter/utils/RefreshableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
package io.flutter.utils;

import com.google.common.collect.ImmutableList;
import org.hamcrest.MatcherAssert;
import org.jetbrains.annotations.NotNull;
import org.junit.Before;
import org.junit.Test;
Expand Down Expand Up @@ -362,7 +363,7 @@ private synchronized List<String> getLogEntries() {
}

private void checkLog(String... expectedEntries) {
assertThat("logEntries entries are different", getLogEntries(), is(ImmutableList.copyOf(expectedEntries)));
MatcherAssert.assertThat("logEntries entries are different", getLogEntries(), is(ImmutableList.copyOf(expectedEntries)));
logEntries.clear();
}
}