Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Spelling (#197)
Browse files Browse the repository at this point in the history
PR-URL: #197
  • Loading branch information
matthewloring authored Dec 17, 2016
1 parent 225e7db commit 5fd0946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system-test/test-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('Controller', function() {
new Debuggee(process.env.GCLOUD_PROJECT, 'test-uid-' + Date.now());

controller.register(debuggee, function(err, body) {
assert.ifError(err, 'should be able to register successfull');
assert.ifError(err, 'should be able to register successfully');
assert.ok(body);
assert.ok(body.debuggee);
assert.ok(body.debuggee.id);
Expand All @@ -50,7 +50,7 @@ describe('Controller', function() {
var debuggee =
new Debuggee(process.env.GCLOUD_PROJECT, 'test-uid-' + Date.now());
controller.register(debuggee, function(err, body) {
assert.ifError(err, 'should be able to register successfull');
assert.ifError(err, 'should be able to register successfully');

controller.listBreakpoints(debuggee, function(err, response, body) {
assert.ifError(err, 'should successfully list breakpoints');
Expand Down

0 comments on commit 5fd0946

Please sign in to comment.