Skip to content

tool - fixed scripts files migration

abb8c32
Select commit
Loading
Failed to load commit list.
Open

Fixed CI #589

tool - fixed scripts files migration
abb8c32
Select commit
Loading
Failed to load commit list.
Cirrus CI / format failed Jun 14, 2025 in 1m 43s

Task Summary

Instruction format failed in 00:06

Details

⚠️ Not enough compute credits to prioritize tasks!

✅ 00:04 clone
✅ 01:23 upgrade_flutter
✅ 00:04 tool_setup
❌ 00:06 format

-          'open.document.asset',
-          arguments: _testAssetPath,
-        ),
+        isMethodCall('open.document.asset', arguments: _testAssetPath),
       ]);
       expect(document.pagesCount, 2);
       await document.close();
@@ -104,10 +85,7 @@ void main() {
     test('from data', () async {
       document = await PdfDocument.openData(testData);
       expect(log, <Matcher>[
-        isMethodCall(
-          'open.document.data',
-          arguments: testData,
-        ),
+        isMethodCall('open.document.data', arguments: testData),
       ]);
       expect(document!.pagesCount, 3);
     });
@@ -118,19 +96,13 @@ void main() {
 
     test('open', () async {
       // page number 0 - not available
-      expect(
-        document!.getPage(0),
-        throwsA(isInstanceOf<RangeError>()),
-      );
+      expect(document!.getPage(0), throwsA(isInstanceOf<RangeError>()));
 
       page = await document!.getPage(3);
       expect(log, <Matcher>[
         isMethodCall(
           'open.page',
-          arguments: {
-            'documentId': 'uuid-data',
-            'page': 3,
-          },
+          arguments: {'documentId': 'uuid-data', 'page': 3},
         ),
       ]);
       expect(page.pageNumber, 3);
@@ -140,10 +112,7 @@ void main() {
       expect(page.document, document);
 
       // page number 4 more than the document
-      expect(
-        document!.getPage(4),
-        throwsA(isInstanceOf<RangeError>()),
-      );
+      expect(document!.getPage(4), throwsA(isInstanceOf<RangeError>()));
     });
 
     test('render', () async {

DONE
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������