Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
Signed-off-by: François de Metz <fdemetz@af83.com>
  • Loading branch information
francois2metz committed May 24, 2011
1 parent 21966ba commit d5c3d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/init.js
Expand Up @@ -51,7 +51,7 @@ server.get_session_middleware = function() {
var get_client_id = function(client_name, callback) {
model.Client.getByName(client_name, function(err, clients) {
if (err) throw new Error(err);
if (clients.length != 1) throw new Errror("There should only be one client!");
if (clients.length != 1) throw new Error("There should only be one client!");
callback(clients[0].get('id'));
});
};
Expand Down

0 comments on commit d5c3d04

Please sign in to comment.