Settings: Fix assertThat in tests
Truth.assertThat is a fluent-style API. Fix the tests to actually do something. Found by errorprone. Bug: 73513670 Test: m RunSettingsRoboTests Test: m javac-check RUN_ERROR_PRONE=true Change-Id: Ib923de28ce5dcf79b9dec718306877e31e58e024
This commit is contained in:
@@ -452,8 +452,8 @@ public class PowerUsageSummaryLegacyTest {
|
|||||||
TextView summary1 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary1);
|
TextView summary1 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary1);
|
||||||
TextView summary2 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary2);
|
TextView summary2 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary2);
|
||||||
Robolectric.flushBackgroundThreadScheduler();
|
Robolectric.flushBackgroundThreadScheduler();
|
||||||
assertThat(summary2.getText().toString().contains(NEW_ML_EST_SUFFIX));
|
assertThat(summary2.getText().toString()).contains(NEW_ML_EST_SUFFIX);
|
||||||
assertThat(summary1.getText().toString().contains(OLD_EST_SUFFIX));
|
assertThat(summary1.getText().toString()).contains(OLD_EST_SUFFIX);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@@ -260,8 +260,8 @@ public class PowerUsageSummaryTest {
|
|||||||
TextView summary1 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary1);
|
TextView summary1 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary1);
|
||||||
TextView summary2 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary2);
|
TextView summary2 = mFragment.mBatteryLayoutPref.findViewById(R.id.summary2);
|
||||||
Robolectric.flushBackgroundThreadScheduler();
|
Robolectric.flushBackgroundThreadScheduler();
|
||||||
assertThat(summary2.getText().toString().contains(NEW_ML_EST_SUFFIX));
|
assertThat(summary2.getText().toString()).contains(NEW_ML_EST_SUFFIX);
|
||||||
assertThat(summary1.getText().toString().contains(OLD_EST_SUFFIX));
|
assertThat(summary1.getText().toString()).contains(OLD_EST_SUFFIX);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Reference in New Issue
Block a user