Skip to content

Commit

Permalink
Fix swapped template values in build_standalone_runner.rb.
Browse files Browse the repository at this point in the history
`example_source_tags` and `example_spec_tags` each returned what the other
should have returned. I noticed this bug because it made the comments in
SpecRunner.html about where to include spec and source files incongruous with
the example tags that followed.
  • Loading branch information
ChrisTM committed Jun 17, 2012
1 parent 7bbcf51 commit 4c28bef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/jasmine_dev/build_standalone_runner.rb
Expand Up @@ -49,11 +49,11 @@ def example_jasmine_tags
end

def example_source_tags
script_tags_for ['spec/SpecHelper.js', 'spec/PlayerSpec.js']
script_tags_for ['src/Player.js', 'src/Song.js']
end

def example_spec_tags
script_tags_for ['src/Player.js', 'src/Song.js']
script_tags_for ['spec/SpecHelper.js', 'spec/PlayerSpec.js']
end
end
end
end

0 comments on commit 4c28bef

Please sign in to comment.