removed duplicate test case

This commit is contained in:
Abass Sesay 2023-11-22 03:00:07 +00:00
parent f249494269
commit 3fb9e50f75
1 changed files with 0 additions and 7 deletions

View File

@ -186,13 +186,6 @@ class Pianos extends Table {
expect(table.nameOfRowClass, 'Piano');
});
test("singularizes table name that end in -s", () async {
final result = await findTable('Socks');
final table = result!.result as DriftTable;
expect(table.nameOfRowClass, 'Sock');
});
});
group('Columns', () {
test('should use field name if no name has been set explicitly', () async {