[Pkg-javascript-commits] [backbone] 18/34: making the speed test labels fit on the graph
Jonas Smedegaard
js at moszumanska.debian.org
Sat May 3 16:58:44 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to tag 0.1.2
in repository backbone.
commit 7b10698af656ffe137aaf78baba7e3e7156b0778
Author: Jeremy Ashkenas <jashkenas at gmail.com>
Date: Fri Oct 15 09:57:31 2010 -0400
making the speed test labels fit on the graph
---
test/speed.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/speed.js b/test/speed.js
index 6cd0b66..2c62c16 100644
--- a/test/speed.js
+++ b/test/speed.js
@@ -18,7 +18,7 @@
object.bind('test:trigger2', fn);
object.bind('test:trigger2', fn);
- JSLitmus.test('Events: trigger 2 functions, passing 5 arguments', function() {
+ JSLitmus.test('Events: trigger 2, passing 5 args', function() {
object.trigger('test:trigger2', 1, 2, 3, 4, 5);
});
@@ -31,14 +31,14 @@
var eventModel = new Backbone.Model;
eventModel.bind('change', fn);
- JSLitmus.test('Model: set Math.random() with a change event', function() {
+ JSLitmus.test('Model: set rand() with an event', function() {
eventModel.set({number: Math.random()});
});
var keyModel = new Backbone.Model;
keyModel.bind('change:number', fn);
- JSLitmus.test('Model: set Math.random() with a key-value observer', function() {
+ JSLitmus.test('Model: set rand() with an attribute observer', function() {
keyModel.set({number: Math.random()});
});
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/backbone.git
More information about the Pkg-javascript-commits
mailing list