spec/functional/terminate_early_spec.rb in picky-4.0.0pre1 vs spec/functional/terminate_early_spec.rb in picky-4.0.0pre2
- old
+ new
@@ -170,11 +170,11 @@
terminate_early
end
fast = performance_of do
try_fast.search 'hello hello'
end
- (slow/fast).should >= 1.4
+ (slow/fast).should >= 1.2
try_slow = Picky::Search.new index
slow = performance_of do
try_slow.search 'hello hello hello'
end
@@ -182,11 +182,11 @@
terminate_early
end
fast = performance_of do
try_fast.search 'hello hello hello'
end
- (slow/fast).should >= 1.7
+ (slow/fast).should >= 1.4
try_slow = Picky::Search.new index
slow = performance_of do
try_slow.search 'hello hello hello hello'
end
@@ -194,9 +194,9 @@
terminate_early
end
fast = performance_of do
try_fast.search 'hello hello hello hello'
end
- (slow/fast).should >= 2.0
+ (slow/fast).should >= 1.7
end
end
\ No newline at end of file