Skip to content

Commit

Permalink
coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
François Benaiteau committed Oct 29, 2014
1 parent 138da4c commit 0b02a92
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/babelish/test_csv2strings.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,10 @@ def test_converting_csv_to_dotstrings_with_stripping_option
"ANOTHER_STRING" = "my other string with space at begin";
EOS
csv_file = "test/data/test_data_with_spaces.csv"
converter = Babelish::CSV2Strings.new(csv_file, {"English" => [:en]}, { :stripping => true})
converter = Babelish::CSV2Strings.new(csv_file, {"English" => [:en]}, :stripping => true)
converter.convert
result = File.read("en.lproj/Localizable.strings")
assert_equal expected_output, result
system("rm -rf *.lproj")
end


end

0 comments on commit 0b02a92

Please sign in to comment.