update comments to reflect new function name

git-svn-id: http://svn.openlayers.org/trunk/openlayers@906 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-07-06 16:55:42 +00:00
parent 0144ee66ab
commit 9b263461c0

View File

@@ -98,12 +98,12 @@
layer.mergeNewParams(newParams);
t.eq( layer.params.layers, "sooper", "changeParams() overwrites well");
t.eq( layer.params.chickpeas, "image/png", "changeParams() adds well");
t.eq( layer.params.layers, "sooper", "mergeNewParams() overwrites well");
t.eq( layer.params.chickpeas, "image/png", "mergeNewParams() adds well");
newParams.chickpeas = 151;
t.eq( layer.params.chickpeas, "image/png", "changeParams() makes clean copy of hash");
t.eq( layer.params.chickpeas, "image/png", "mergeNewParams() makes clean copy of hash");
}