Skip to content

Commit

Permalink
Fix race condition in tests (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
FauconSpartiate authored Nov 9, 2023
1 parent 43e8fc5 commit eea506a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/excel_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ void main() {
equals('Moscow'));
});

test('Saving XLSX File with superscript', () async {
test('Saving XLSX File with superscript', () {
var file = './test/test_resources/superscriptExample.xlsx';
var bytes = File(file).readAsBytesSync();
var excel = Excel.decodeBytes(bytes);
Expand Down Expand Up @@ -411,7 +411,7 @@ void main() {
expect(newCount!.value, "15");
});

test('Saving XLSX File with superscript', () async {
test('Saving XLSX File with superscript', () {
var file = './test/test_resources/superscriptExample.xlsx';
var bytes = File(file).readAsBytesSync();
var excel = Excel.decodeBytes(bytes);
Expand Down Expand Up @@ -586,7 +586,7 @@ void main() {
}
});

test('test support for merged cells with borders', () async {
test('test support for merged cells with borders', () {
final file = './test/test_resources/mergedBorders.xlsx';
final bytes = File(file).readAsBytesSync();
final excel = Excel.decodeBytes(bytes);
Expand Down Expand Up @@ -669,7 +669,7 @@ void main() {
}
});

test('saving XLSX File with borders', () async {
test('saving XLSX File with borders', () {
final file = './test/test_resources/borders.xlsx';
final bytes = File(file).readAsBytesSync();
final excel = Excel.decodeBytes(bytes);
Expand Down Expand Up @@ -723,7 +723,7 @@ void main() {
equals('ロケール選択'));
});

test('saving XLSX File without rPh elements', () async {
test('saving XLSX File without rPh elements', () {
final file = './test/test_resources/rphSample.xlsx';
final bytes = File(file).readAsBytesSync();
final excel = Excel.decodeBytes(bytes);
Expand Down

0 comments on commit eea506a

Please sign in to comment.