From 20a8099715059f9548d471b8c3e470dafecb9a03 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 5 Feb 2026 15:14:55 +0100 Subject: [PATCH 1/2] 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 From 19c4bcc0301675860b14fbf4a7692771ba6ab04d Mon Sep 17 00:00:00 2001 From: Joe Stein Date: Fri, 13 Feb 2026 18:38:37 -0600 Subject: [PATCH 2/2] Add CHANGELOG entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb984ff..6daeae68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Remove unused `syntax_tree` gems from development. [#297](https://github.com/splitwise/super_diff/pull/297) - Simplify tiered lines elider. [#302](https://github.com/splitwise/super_diff/pull/302) - Support elision for flat line trees. [#300](https://github.com/splitwise/super_diff/pull/300) +- Fix integration snippet indentation. [#299](https://github.com/splitwise/super_diff/pull/299) ## 0.18.0 - 2025-12-05