Skip to content

Commit 68aa576

Browse files
committed
🎨 fix formatting
1 parent 70a9d3c commit 68aa576

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/box_transform/lib/src/extensions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ extension DoubleExt on double {
2323
/// Rounds a double to the given precision.
2424
double roundToPrecision(int precision) =>
2525
double.parse((this).toStringAsFixed(precision));
26-
}
26+
}

packages/box_transform/test/enums_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ void main() {
262262
expect(HandlePosition.left.anchor(rect), Vector2(500, 300));
263263
expect(HandlePosition.right.anchor(rect), Vector2(100, 300));
264264
// HandlePosition.none assumes bottom-right and returns top-left.
265-
expect(()=> HandlePosition.none.anchor(rect), throwsArgumentError);
265+
expect(() => HandlePosition.none.anchor(rect), throwsArgumentError);
266266
});
267267
});
268268

0 commit comments

Comments
 (0)