summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-12-13 21:31:48 +0800
committerAndre Arko <andre@arko.net>2015-12-13 21:31:55 +0800
commit1dd805b62f483706c2d38a28d1449ef414f0eb0f (patch)
treef349b04476f22d5ad4f332c345e50dc4e5822ab9
parent9cfdc8668c4a4a3364079a5f7917a46b575f279a (diff)
downloadbundler-1dd805b62f483706c2d38a28d1449ef414f0eb0f.tar.gz
also rename the error in the spec
-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 fbb58464ef..2cc7dff842 100644
--- a/spec/bundler/psyched_yaml_spec.rb
+++ b/spec/bundler/psyched_yaml_spec.rb
@@ -1,8 +1,8 @@
require "spec_helper"
require "bundler/psyched_yaml"
-describe Bundler::YamlSyntaxError do
+describe "Bundler::YamlLibrarySyntaxError" do
it "is raised on YAML parse errors" do
- expect { YAML.parse "{foo" }.to raise_error(Bundler::YamlSyntaxError)
+ expect { YAML.parse "{foo" }.to raise_error(Bundler::YamlLibrarySyntaxError)
end
end