projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
277f6bf
)
Fix value of yMax in callback.js test.
author
clocksmith
<antrob@google.com>
Mon, 25 Feb 2013 17:58:36 +0000
(12:58 -0500)
committer
clocksmith
<antrob@google.com>
Mon, 25 Feb 2013 17:58:36 +0000
(12:58 -0500)
auto_tests/tests/callback.js
patch
|
blob
|
blame
|
history
diff --git
a/auto_tests/tests/callback.js
b/auto_tests/tests/callback.js
index
1d748fb
..
298fe8a
100644
(file)
--- a/
auto_tests/tests/callback.js
+++ b/
auto_tests/tests/callback.js
@@
-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");