Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Intended to remove 'rescue nil' but only removed 'l'.
  • Loading branch information
ytti committed Jan 7, 2025
1 parent 0502532 commit e353b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/model/atoms.rb
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class TestSecret < TestPassFail
def initialize(model, desc, type = 'secret')
super

@output_test = TestOutput.new(@model, @desc, 'output') rescue ni
@output_test = TestOutput.new(@model, @desc, 'output')
@skip = true if @output_test.skip?
end
end
Expand Down

0 comments on commit e353b36

Please sign in to comment.