Skip to content

Commit 606c62f

Browse files
committed
tests: Replace French variable name 'vehicule' by English 'vehicle'
Fix the same word also in a message string. Signed-off-by: Stefan Weil <[email protected]>
1 parent 47e4371 commit 606c62f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/BaseTypes/Class.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@
8585

8686
// test with an abstract class (i.e. a class that doesn't have an initialize
8787
// method) as the parent class
88-
var Vehicule = OpenLayers.Class({
88+
var Vehicle = OpenLayers.Class({
8989
numWheels: null
9090
});
91-
var Bike = OpenLayers.Class(Vehicule, {
91+
var Bike = OpenLayers.Class(Vehicle, {
9292
initialize: function() {
9393
this.numWheels = 2;
9494
}
9595
});
9696
var b = new Bike();
97-
t.ok(b instanceof Vehicule, "a bike is a vehicule");
97+
t.ok(b instanceof Vehicle, "a bike is a vehicle");
9898

9999
// test inheritance with something that has a non-function initialize property
100100
var P = OpenLayers.Class({

0 commit comments

Comments
 (0)