Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mose committed Jul 25, 2016
1 parent 293c005 commit 99f6227
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/phabs_admin.coffee
Expand Up @@ -59,7 +59,7 @@ module.exports = (robot) ->
msg.send "The alias '#{alias}' already exists for project '#{data.aliases[alias]}'."
else
data.aliases[alias] = project
msg.send "Ok, '#{project}'' will be known as '#{alias}'."
msg.send "Ok, '#{project}' will be known as '#{alias}'."

# hubot phad forget <alias>
robot.respond (/phad forget (.+)$/), (msg) ->
Expand Down
2 changes: 1 addition & 1 deletion test/phabs_admin_test.coffee
Expand Up @@ -395,7 +395,7 @@ describe 'phabs_admin module', ->
hubot 'phad project with phid alias pwp'
it 'should say that the alias already exists', ->
expect(hubotResponse())
.to.eql "Ok, 'project with phid'' will be known as 'pwp'."
.to.eql "Ok, 'project with phid' will be known as 'pwp'."

# ---------------------------------------------------------------------------------
context 'user wants to remove an alias', ->
Expand Down

0 comments on commit 99f6227

Please sign in to comment.