Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2015-10-29 19:53:56 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2015-10-30 14:00:58 +0300
commit6d3068bec3a926d17f4f2d0da895856489bfcb7a (patch)
tree58387f5b4e57559c20cebc0b7baad73eb2603b90 /spec/benchmarks
parenta9df714764d6138bf162acd82b780ca82a21864b (diff)
Adjusted ips/sec for find_by_any_email benchmarks
While these benchmarks run at roughly 1500 i/sec setting the threshold to 1000 leaves some room for deviations (e.g. due to different DB setups).
Diffstat (limited to 'spec/benchmarks')
-rw-r--r--spec/benchmarks/models/user_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/benchmarks/models/user_spec.rb b/spec/benchmarks/models/user_spec.rb
index 74520aaf3f0..4cdba66939b 100644
--- a/spec/benchmarks/models/user_spec.rb
+++ b/spec/benchmarks/models/user_spec.rb
@@ -48,7 +48,7 @@ describe User, benchmark: true do
benchmark_subject { User.find_by_any_email(email) }
- it { is_expected.to iterate_per_second(5000) }
+ it { is_expected.to iterate_per_second(1000) }
end
describe 'using a user with multiple Email addresses' do
@@ -62,7 +62,7 @@ describe User, benchmark: true do
end
end
- it { is_expected.to iterate_per_second(5000) }
+ it { is_expected.to iterate_per_second(1000) }
end
end
end