summaryrefslogtreecommitdiff
path: root/spec/bundler
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2012-11-14 19:01:29 -0800
committerAndre Arko <andre@arko.net>2012-11-14 19:11:18 -0800
commit7268495a5a4708519fcfcfbe48940096672ea6a0 (patch)
tree9201c171cb9c8b2434d5ba8cff52aa5f3255d966 /spec/bundler
parente89a18e408733ecb778940a5770167b91dbc48f6 (diff)
downloadbundler-7268495a5a4708519fcfcfbe48940096672ea6a0.tar.gz
refactor psyched_yaml
Diffstat (limited to 'spec/bundler')
-rw-r--r--spec/bundler/psyched_yaml_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/psyched_yaml_spec.rb b/spec/bundler/psyched_yaml_spec.rb
index 36ae2fc638..f67782c5a1 100644
--- a/spec/bundler/psyched_yaml_spec.rb
+++ b/spec/bundler/psyched_yaml_spec.rb
@@ -1,7 +1,7 @@
require 'spec_helper'
-describe YamlSyntaxError do
+describe Bundler::YamlSyntaxError do
it "is raised on YAML parse errors" do
- expect{ YAML.parse "{foo" }.to raise_error(YamlSyntaxError)
+ expect{ YAML.parse "{foo" }.to raise_error(Bundler::YamlSyntaxError)
end
end