projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ca15c0
)
Fix syntax error in callback.js
author
clocksmith
<antrob@google.com>
Tue, 26 Feb 2013 20:02:04 +0000
(15:02 -0500)
committer
clocksmith
<antrob@google.com>
Tue, 26 Feb 2013 20:02:04 +0000
(15:02 -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
535bd0e
..
a727fa5
100644
(file)
--- a/
auto_tests/tests/callback.js
+++ b/
auto_tests/tests/callback.js
@@
-608,6
+608,6
@@
CallbackTestCase.prototype.underlayCallback_yAxisRange = function() {
underlayCallback: callback
});
- assertEquals(0, yMin)
)
;
- assertEquals(10, yMax)
)
;
+ assertEquals(0, yMin);
+ assertEquals(10, yMax);
};