We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a5209 commit 0b97786Copy full SHA for 0b97786
spec/requests/better_together/navigation_areas_controller_spec.rb
@@ -37,7 +37,7 @@
37
area = BetterTogether::NavigationArea.find_by(identifier: 'main-nav')
38
expect(area).to be_present
39
expect(area.style).to eq('primary')
40
- expect(area.visible).to eq(true)
+ expect(area.visible).to be(true)
41
end
42
43
it 'renders new on invalid params (HTML 200)' do
@@ -60,7 +60,7 @@
60
expect(response).to have_http_status(:ok)
61
62
expect(area.reload.style).to eq('secondary')
63
- expect(area.reload.visible).to eq(false)
+ expect(area.reload.visible).to be(false)
64
65
66
it 'renders edit on invalid params (HTML 200)' do
0 commit comments