Removing leftover skips. (#37250)

This commit is contained in:
Kate Lovett 2019-07-30 14:45:00 -07:00 committed by GitHub
parent a8fbe02a9d
commit 9bb7142ef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -546,7 +546,6 @@ void main() {
'switch.tap.off.png', 'switch.tap.off.png',
version: 0, version: 0,
), ),
skip: !isLinux,
); );
await tester.tap(find.byKey(switchKey)); await tester.tap(find.byKey(switchKey));
@ -561,7 +560,6 @@ void main() {
'switch.tap.turningOn.png', 'switch.tap.turningOn.png',
version: 0, version: 0,
), ),
skip: !isLinux,
); );
await tester.pumpAndSettle(); await tester.pumpAndSettle();
@ -571,7 +569,6 @@ void main() {
'switch.tap.on.png', 'switch.tap.on.png',
version: 0, version: 0,
), ),
skip: !isLinux,
); );
}); });