Skip to content

Commit

Permalink
Make table title upcase
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkAndshark committed Nov 12, 2023
1 parent 2083448 commit 8865786
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mbtiles/src/mbtiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl Display for Statistics {
writeln!(
f,
"|{:^9}|{:^9}|{:^9}|{:^9}|{:^9}|{:^9}|",
"zoom", "count", "smallest", "largest", "average", "bbox"
"Zoom", "Count", "Smallest", "Largest", "Average", "BBox"
)
.unwrap();

Expand Down
2 changes: 1 addition & 1 deletion tests/expected/mbtiles/stats.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ File: ./tests/fixtures/mbtiles/world_cities.mbtiles
FileSize: 48.00KiB
Schema: flat
Page size: 4.00KiB
| zoom | count |smallest | largest | average | bbox |
| Zoom | Count |Smallest | Largest | Average | BBox |
| 0| 1| 1.08KiB| 1.08KiB| 1.08KiB|-179.99999997494382,-85.05112877764508,180.00000015460688,85.05112879314403|
| 1| 4| 160B| 650B| 366B|-179.99999997494382,-85.05112877764508,180.00000015460688,85.05112879314403|
| 2| 7| 137B| 495B| 239B|-179.99999997494382,-66.51326042021836,180.00000015460688,66.51326049182072|
Expand Down

0 comments on commit 8865786

Please sign in to comment.