Skip to content

Commit

Permalink
Fix awful typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeiklejohn committed Jan 7, 2013
1 parent 3a7f9be commit ea8ae55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/javascripts/app/models.js
Expand Up @@ -77,14 +77,14 @@ GiddyUp.TestResult = DS.Model.extend({
var instance = this.get('test_instance');
var scorecard = instance.get('scorecard');
var project = scorecard.get('project');
var backend = instnace.get('backend') || "undefined";
var backend = instance.get('backend') || "undefined";

return {
title: "GiddyUp: New " + status + " on " +
project.get('name') + " " +
scorecard.get('name'),
message: instance.get('name') + " | " +
instance.get('backend') + " | " +
backend + " | " +
instance.get('platform')
};
}.property()
Expand Down

0 comments on commit ea8ae55

Please sign in to comment.