Skip to content

Commit

Permalink
fix(rule): correct fixture lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellmb committed Mar 11, 2014
1 parent 54274d1 commit a0e36ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/rules/lint-free.spec.coffee.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This rule uses the [isCodeLintFree](../lib/rule.util.coffee.md#block-code-lint-f
'use strict'
util = require('../lib/rule.util')
getCode = (lang) ->
util.getCode "code-comment/#{lang}"
util.getCode "lint-free/#{lang}"
```

Define rule acceptance tests.
Expand Down
2 changes: 1 addition & 1 deletion spec/rules/valid-code.spec.coffee.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This rule uses the [isCodeValid](../lib/rule.util.coffee.md#block-code-is-valid)
'use strict'
util = require('../lib/rule.util')
getCode = (lang) ->
util.getCode "code-comment/#{lang}"
util.getCode "valid-code/#{lang}"
```

Define rule acceptance tests.
Expand Down

0 comments on commit a0e36ef

Please sign in to comment.