From 3571dd5e6b5d129aded0f53ae690c72375ceabb5 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 5 Feb 2026 15:14:55 +0100 Subject: [PATCH] Fix integration snippet indentation Fixes warning: ``` super_diff/tmp/integration_spec.rb:17: warning: mismatched indentations at 'end' with 'class' at 15 ``` --- spec/support/integration/test_programs/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/support/integration/test_programs/base.rb b/spec/support/integration/test_programs/base.rb index 4c64c88f..a64103d1 100644 --- a/spec/support/integration/test_programs/base.rb +++ b/spec/support/integration/test_programs/base.rb @@ -106,7 +106,7 @@ def minimal_program opt_before = RSpec::Expectations.configuration.on_potential_false_positives begin RSpec::Expectations.configuration.on_potential_false_positives = :nothing - #{reindent(code, level: 3)} + #{reindent(code, level: 3)} ensure RSpec::Expectations.configuration.on_potential_false_positives = opt_before end