Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
JaffaKetchup committed Nov 9, 2023
1 parent fb409b1 commit 7fd1a94
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions test/layer/tile_layer/tile_range_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(25.0, 25.0),
const Point(25.0, 25.0),
const Point(25, 25),
const Point(25, 25),
),
);

Expand All @@ -49,7 +49,7 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(0.0, 0.0),
const Point(0, 0),
const Point(0.1, 0.1),
),
);
Expand All @@ -63,7 +63,7 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(0.0, 0.0),
const Point(0, 0),
const Point(9.99, 9.99),
),
);
Expand Down Expand Up @@ -101,8 +101,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(25.0, 25.0),
const Point(25.0, 25.0),
const Point(25, 25),
const Point(25, 25),
),
);

Expand All @@ -128,17 +128,17 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(25.0, 25.0),
const Point(25.0, 25.0),
const Point(25, 25),
const Point(25, 25),
),
);

final tileRange2 = DiscreteTileRange.fromPixelBounds(
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(35.0, 35.0),
const Point(35, 35),
const Point(35, 35),
),
);

Expand All @@ -154,17 +154,17 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(25.0, 25.0),
const Point(35.0, 35.0),
const Point(25, 25),
const Point(35, 35),
),
);

final tileRange2 = DiscreteTileRange.fromPixelBounds(
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(45.0, 45.0),
const Point(35, 35),
const Point(45, 45),
),
);

Expand All @@ -182,17 +182,17 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(25.0, 25.0),
const Point(35.0, 35.0),
const Point(25, 25),
const Point(35, 35),
),
);

final tileRange2 = DiscreteTileRange.fromPixelBounds(
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(15.0, 15.0),
const Point(45.0, 45.0),
const Point(15, 15),
const Point(45, 45),
),
);

Expand All @@ -211,8 +211,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(45.0, 45.0),
const Point(35, 35),
const Point(45, 45),
),
);

Expand All @@ -226,8 +226,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(35.0, 35.0),
const Point(35, 35),
const Point(35, 35),
),
);

Expand All @@ -239,8 +239,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(45.0, 45.0),
const Point(35, 35),
const Point(45, 45),
),
);

Expand All @@ -252,8 +252,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(55.0, 55.0),
const Point(35, 35),
const Point(55, 55),
),
);

Expand All @@ -266,8 +266,8 @@ void main() {
zoom: 0,
tileSize: 10,
pixelBounds: Bounds(
const Point(35.0, 35.0),
const Point(35.0, 35.0),
const Point(35, 35),
const Point(35, 35),
),
);

Expand Down

0 comments on commit 7fd1a94

Please sign in to comment.