Skip to content

Commit 7837f31

Browse files
committed
Fixes typos in invocation_spec
1 parent cd8bf2f commit 7837f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/invocation_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@
7676
expect(capture(:stdout) { base.invoke("c:one") }).to be_empty
7777
end
7878

79-
it "raises Thor::UndefinedcommandError if the command can't be found" do
79+
it "raises Thor::UndefinedCommandError if the command can't be found" do
8080
expect {
8181
A.new.invoke("foo:bar")
8282
}.to raise_error(Thor::UndefinedCommandError)
8383
end
8484

85-
it "raises Thor::UndefinedcommandError if the command can't be found even if all commands were already executed" do
85+
it "raises Thor::UndefinedCommandError if the command can't be found even if all commands were already executed" do
8686
base = C.new
8787
silence(:stdout){ base.invoke_all }
8888

0 commit comments

Comments
 (0)