From 84df5cfaf89ffbc911e61b82c4966ee191e96885 Mon Sep 17 00:00:00 2001 From: Nadav Har'El Date: Mon, 15 Dec 2025 13:25:20 +0200 Subject: [PATCH] test/alternator: delete unnecessary "pass" Fixing something that never bothered anyone but our automated "code quality" tool: there's an unnecessary call to "pass" in one of our tests. Just remove it. Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Closes scylladb/scylladb#27645 --- test/alternator/test_streams.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/alternator/test_streams.py b/test/alternator/test_streams.py index 02649b668f..a6ec6914ed 100644 --- a/test/alternator/test_streams.py +++ b/test/alternator/test_streams.py @@ -735,7 +735,6 @@ def compare_events(expected_events, output, mode, expected_region): assert not 'NewImage' in record if expected_old_image == None: assert not 'OldImage' in record - pass else: old_image = {x:deserializer.deserialize(y) for (x,y) in record['OldImage'].items()} assert expected_old_image == old_image