Fix value of yMax in callback.js test.
authorclocksmith <antrob@google.com>
Mon, 25 Feb 2013 17:58:36 +0000 (12:58 -0500)
committerclocksmith <antrob@google.com>
Mon, 25 Feb 2013 17:58:36 +0000 (12:58 -0500)
auto_tests/tests/callback.js

index 1d748fb..298fe8a 100644 (file)
@@ -577,7 +577,7 @@ CallbackTestCase.prototype.underlayCallback_noSeries = function() {
   var callback = function(canvas, area, g) {
     called = true;
     yMin = g.yAxisRange(0)[0];
-    yMax = g.yAxisRange(0)[0];
+    yMax = g.yAxisRange(0)[1];
   };
 
   var graph = document.getElementById("graph");