Skip to content

Commit 7319f3b

Browse files
committed
travis
1 parent 2e15e66 commit 7319f3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/compass_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class CompassTest < Minitest::Test
44
def test_create_project
55
command = 'rm -rf tmp/new-compass-project; bundle exec compass create tmp/new-compass-project -r bootstrap-sass --using bootstrap --trace --force'
6-
success = silence_stdout_if(!ENV['VERBOSE']) { Bundler.with_clean_env { system(command) } }
6+
success = silence_stdout_if(!ENV['VERBOSE']) { Bundler.with_original_env { system(command) } }
77
assert success, 'Compass project creation failed!'
88
end
99
end

test/gemfiles/sass_head.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "https://rubygems.org"
22

3-
gem 'sass', git: 'https://github.com/nex3/sass', branch: 'stable' # master is not compatible with Compass master
3+
gem 'sass', git: 'https://github.com/sass/sass', branch: 'stable' # master is not compatible with Compass master
44
gem 'compass', git: 'https://github.com/chriseppstein/compass', branch: 'master', require: false
55

66
gemspec path: '../../'

0 commit comments

Comments
 (0)