mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Fixup CI (#2412)
This commit is contained in:
@@ -158,7 +158,6 @@ class WonkyCharState extends State<WonkyChar>
|
|||||||
'**ERROR** unrecognized property to animate: ${s.property}');
|
'**ERROR** unrecognized property to animate: ${s.property}');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// save refs to all curves just to persist in mem, don't need to touch them again
|
// save refs to all curves just to persist in mem, don't need to touch them again
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
|
|
||||||
import 'package:collection/collection.dart';
|
|
||||||
import 'package:uuid/uuid.dart' as uuid;
|
import 'package:uuid/uuid.dart' as uuid;
|
||||||
|
|
||||||
import 'api.dart';
|
import 'api.dart';
|
||||||
@@ -108,7 +107,7 @@ class MockEntryApi implements EntryApi {
|
|||||||
var list = _storage.keys
|
var list = _storage.keys
|
||||||
.where((k) => k.startsWith(categoryId))
|
.where((k) => k.startsWith(categoryId))
|
||||||
.map((k) => _storage[k])
|
.map((k) => _storage[k])
|
||||||
.whereNotNull()
|
.nonNulls
|
||||||
.toList();
|
.toList();
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -186,7 +186,7 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
testWidgets(
|
testWidgets(
|
||||||
'Material version switches between Material3 and Material2 when'
|
'Material version switches between Material3 and Material2 when '
|
||||||
'the version icon is clicked', (tester) async {
|
'the version icon is clicked', (tester) async {
|
||||||
widgetSetup(tester, 450, windowHeight: 7000);
|
widgetSetup(tester, 450, windowHeight: 7000);
|
||||||
await tester.pumpWidget(const App());
|
await tester.pumpWidget(const App());
|
||||||
|
|||||||
Reference in New Issue
Block a user