Changes between Initial Version and Version 1 of Ticket #23621, comment 2
- Timestamp:
- 2024-04-20T13:08:31+02:00 (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23621, comment 2
initial v1 7 7 assertMatch: "node natural=tree circumference=82.4"; 8 8 assertNoMatch: "node natural=tree circumference=18.4"; 9 assertNoMatch: "node natural=tree circumference= 100 cm";9 assertNoMatch: "node natural=tree circumference=\"100 cm\""; 10 10 assertNoMatch: "node natural=tree circumference=43"; /* Current world record */ 11 11 } 12 12 }}} 13 13 14 Or, if you also want to include the (negligible) amount of treeswith `m`-units explicitly specified:14 Or, if you also want to include the 2 trees worldwide with `m`-units explicitly specified: 15 15 {{{ 16 16 #!mapcss … … 20 20 assertMatch: "node natural=tree circumference=\"82.4 m\""; 21 21 assertNoMatch: "node natural=tree circumference=18.4"; 22 assertNoMatch: "node natural=tree circumference= 100 cm";22 assertNoMatch: "node natural=tree circumference=\"100 cm\""; 23 23 assertNoMatch: "node natural=tree circumference=43"; /* Current world record */ 24 24 }