Skip to content

Commit c47fc42

Browse files
author
David Padilla
committed
Fixed a big generator test fail
1 parent e73f135 commit c47fc42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: test/generators/autocomplete/uncompressed_generator_test.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ def setup
1010

1111
File.unlink(@filename) if File.exists?(@filename)
1212

13-
InstallGenerator.start([], :destination_root => @destination)
13+
UncompressedGenerator.start([], :destination_root => @destination)
1414
end
1515

1616
def test_install
1717
assert File.exists?(@filename)
1818

1919
assert_equal(
20-
File.read(File.join(@source, 'autocomplete-rails.js')),
20+
File.read(File.join(@source, 'autocomplete-rails-uncompressed.js')),
2121
File.read(@filename)
2222
)
2323
end

0 commit comments

Comments
 (0)