From 6310d751bd0fc2eec0c1a0aa92b222d8aa2431fd Mon Sep 17 00:00:00 2001 From: Tomohiro Taira Date: Tue, 7 Jan 2020 13:09:48 +0900 Subject: [PATCH] Fix behavior of NotFoundException See github.com/sinatra/sinatra/pull/1566 --- spec/fluentular_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/fluentular_spec.rb b/spec/fluentular_spec.rb index 3c6a058..a28f0b1 100644 --- a/spec/fluentular_spec.rb +++ b/spec/fluentular_spec.rb @@ -101,6 +101,6 @@ before { get '/NOT_EXISTS_PAGE' } it { is_expected.to be_not_found } - it { is_expected.to match '

Not Found

' } + it { is_expected.to match 'GET /NOT_EXISTS_PAGE' } end end