From ced743e6247671e13eca1f26d0d1b66c776fb7ee Mon Sep 17 00:00:00 2001 From: Alex Moinet Date: Thu, 9 Jan 2025 15:27:44 +0000 Subject: [PATCH] Fix added ruby step --- features/steps/ruby_notifier_steps.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/features/steps/ruby_notifier_steps.rb b/features/steps/ruby_notifier_steps.rb index 3b07c80c..66bb4a34 100644 --- a/features/steps/ruby_notifier_steps.rb +++ b/features/steps/ruby_notifier_steps.rb @@ -177,8 +177,9 @@ end Then("in Rails versions {string} {int} except {int} the event {string} is a timestamp") do |operator, version, exception, path| - skip if RAILS_FIXTURE.version_matches?('==', exception) - if RAILS_FIXTURE.version_matches?(operator, version) + if RAILS_FIXTURE.version_matches?('==', exception) + true + elsif RAILS_FIXTURE.version_matches?(operator, version) steps %Q{ And the event "#{path}" is a timestamp }