From b5506137007e29457383b7b31cf30f5eaee037e4 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 8 May 2010 23:52:31 -0700 Subject: [PATCH] Fix some failing test cases. --- test/configuration_test.rb | 8 ++++---- test/fixtures/stylesheets/blueprint/css/typography.css | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/configuration_test.rb b/test/configuration_test.rb index 1fca5d1a..f8feab4b 100644 --- a/test/configuration_test.rb +++ b/test/configuration_test.rb @@ -81,8 +81,8 @@ class ConfigurationTest < Test::Unit::TestCase assert Compass.configuration.to_sass_engine_options[:load_paths].include?("/home/chris/my_compass_project/../foo") assert Compass.configuration.to_sass_engine_options[:load_paths].include?("/path/to/my/framework"), Compass.configuration.to_sass_engine_options[:load_paths].inspect - assert_equal "/home/chris/my_compass_project/css/framework", Compass.configuration.to_sass_plugin_options[:template_location]["/path/to/my/framework"] - assert_equal "/home/chris/my_compass_project/css/foo", Compass.configuration.to_sass_plugin_options[:template_location]["/home/chris/my_compass_project/../foo"] + assert_equal "/home/chris/my_compass_project/css/framework", Compass.configuration.to_sass_plugin_options[:template_location].find{|s,c| s == "/path/to/my/framework"}[1] + assert_equal "/home/chris/my_compass_project/css/foo", Compass.configuration.to_sass_plugin_options[:template_location].find{|s,c| s == "/home/chris/my_compass_project/../foo"}[1] expected_serialization = <