Skip to content

Commit

Permalink
unneeded comma
Browse files Browse the repository at this point in the history
  • Loading branch information
lcalvy committed Jan 24, 2012
1 parent e52e3be commit b4677bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test.html
Expand Up @@ -170,7 +170,7 @@
success: function () {
// Ok, now we need to create a new movie object and retrieve it
var movie2 = new Movie({
title: "Avatar",
title: "Avatar"
});
movie2.fetch({
success: function (object) {
Expand All @@ -197,7 +197,7 @@
}

var movie = new Movie({
title: "Avatar",
title: "Avatar"
});
movie.fetch({
success: function () {
Expand All @@ -217,7 +217,7 @@
}],
["read model that do not exist with index", function () {
var movie = new Movie({
title: "Memento",
title: "Memento"
});
movie.fetch({
success: function (object) {
Expand Down

0 comments on commit b4677bd

Please sign in to comment.