Skip to content

Commit 777115f

Browse files
committed
Format.
1 parent 4b81d68 commit 777115f

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

example/test_types/lib/src/column.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/// TEST CLASS
32
class Column<T extends Object> {
43
const Column({

example/test_types/lib/src/sqlite_type.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ enum SqliteType<T> {
1313

1414
/// Dart type associated with the Sqlite type.
1515
Type get type => T;
16-
1716
}

test/generic_reader_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Future<void> main() async {
131131
});
132132

133133
group('Reading Constants:', () {
134-
test('getList<String>()', () {
134+
test('getList<String>()', () {
135135
expect(
136136
namesCR.getList<String>(),
137137
const ['Thomas', 'Mayor'],
@@ -184,7 +184,7 @@ Future<void> main() async {
184184
});
185185
test('ErrorOf<ConstantReader>: Wrong type', () {
186186
try {
187-
columnCR.get<String>();
187+
columnCR.get<String>();
188188
} on ErrorOf catch (e) {
189189
expect(e, isA<ErrorOf<ConstantReader>>());
190190
expect(

test/src/researcher.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import 'package:test_types/test_types.dart';
55
class Researcher {
66
const Researcher();
77

8-
final Column<int> id =
9-
const Column<int>(defaultValue: 3, name: 'id');
8+
final Column<int> id = const Column<int>(defaultValue: 3, name: 'id');
109

1110
final List<String> names = const ['Thomas', 'Mayor'];
1211

0 commit comments

Comments
 (0)