summaryrefslogtreecommitdiffstats
path: root/spec/node_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/node_spec.rb')
-rw-r--r--spec/node_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index fe1edfb..785da42 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -266,10 +266,10 @@ describe Zorglub do
it 'haml engine should work' do
Node0.app.opt! :engines_cache_enabled, false
r = Node0.my_call '/engines/haml'
- expect(r.body[0]).to eq "<h1>Hello world</h1>\n"
+ expect(r.body[0]).to eq "<h1>Hello <i>world</i></h1>\n"
Node0.app.opt! :engines_cache_enabled, true
r = Node0.my_call '/engines/haml'
- expect(r.body[0]).to eq "<h1>Hello world</h1>\n"
+ expect(r.body[0]).to eq "<h1>Hello <i>world</i></h1>\n"
end
it 'sass engine should work' do