Minor fix for DevicesAdapterTest

This commit is contained in:
Lode Hoste 2015-03-22 22:36:27 +01:00
parent 02043095a6
commit cf8ed62485
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ public class DevicesAdapterTest extends AndroidTestCase {
assertEquals(getContext().getString(R.string.device_up_to_date),
((TextView) v.findViewById(R.id.status)).getText().toString());
assertEquals("1 Mb/s", ((TextView) v.findViewById(R.id.download)).getText().toString());
assertEquals("1 Gb/s", ((TextView) v.findViewById(R.id.upload)).getText().toString());
assertEquals("1 Mib/s", ((TextView) v.findViewById(R.id.download)).getText().toString());
assertEquals("1 Gib/s", ((TextView) v.findViewById(R.id.upload)).getText().toString());
}
}