Skip to content

Commit

Permalink
Fixed bug with hasTag method
Browse files Browse the repository at this point in the history
  • Loading branch information
pineapplemachine committed Mar 29, 2018
1 parent 1d5d59b commit d478748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion canary.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class CanaryTest{
}
// Get whether this test has a certain tag.
hasTag(tag){
return tag in this.tagDictionary[tag];
return tag in this.tagDictionary;
}
// Get whether this test should be skipped, e.g. if its todo or ignore
// flag has been set.
Expand Down

0 comments on commit d478748

Please sign in to comment.