Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2018-04-18 01:35:26 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2018-12-14 15:16:04 +0300
commit418073fd435446c2c3d55e1e29990bbff4159c96 (patch)
treeac0b35918fd6ea56a9681f79a0ba93304271a9fa
parentb6e3c54af8cdb649fa86a402d31852449940f387 (diff)
Fix test/compass_test.rb for recent bundler
-rw-r--r--test/compass_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compass_test.rb b/test/compass_test.rb
index 1811ca24..8b2fc8b4 100644
--- a/test/compass_test.rb
+++ b/test/compass_test.rb
@@ -3,7 +3,7 @@ require 'test_helper'
class CompassTest < Minitest::Test
def test_create_project
command = 'rm -rf tmp/new-compass-project; bundle exec compass create tmp/new-compass-project -r bootstrap-sass --using bootstrap --trace --force'
- success = silence_stdout_if(!ENV['VERBOSE']) { system(command) }
+ success = silence_stdout_if(!ENV['VERBOSE']) { Bundler.with_clean_env { system(command) } }
assert success, 'Compass project creation failed!'
end
end