Commit 055bc89f authored by Valery Sizov's avatar Valery Sizov

fix spec

parent 16019939
...@@ -23,7 +23,7 @@ module SearchHelper ...@@ -23,7 +23,7 @@ module SearchHelper
return unless collection.count > 0 return unless collection.count > 0
from = collection.offset_value + 1 from = collection.offset_value + 1
to = collection.offset_value + collection.length to = collection.offset_value + collection.count
count = collection.total_count count = collection.total_count
"Showing #{from} - #{to} of #{count} #{scope.humanize(capitalize: false)} for \"#{term}\"" "Showing #{from} - #{to} of #{count} #{scope.humanize(capitalize: false)} for \"#{term}\""
......
...@@ -80,9 +80,9 @@ ActiveRecord::Schema.define(version: 20160421130527) do ...@@ -80,9 +80,9 @@ ActiveRecord::Schema.define(version: 20160421130527) do
t.string "sentry_dsn" t.string "sentry_dsn"
t.boolean "email_author_in_body", default: false t.boolean "email_author_in_body", default: false
t.integer "default_group_visibility" t.integer "default_group_visibility"
t.boolean "repository_checks_enabled", default: true t.boolean "repository_checks_enabled", default: false
t.integer "metrics_packet_size", default: 1
t.text "shared_runners_text" t.text "shared_runners_text"
t.integer "metrics_packet_size", default: 1
end end
create_table "approvals", force: :cascade do |t| create_table "approvals", force: :cascade do |t|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment