diff --git a/test/int/test_basics.py b/test/int/test_basics.py index cc42113847be80ce2b5d4ba5fe62985ed42eee19..753972f34e7a583ea2d22bd8a078d2e94f92564c 100644 --- a/test/int/test_basics.py +++ b/test/int/test_basics.py @@ -481,7 +481,14 @@ Insert({_pico_index}, [528,0,"routing_key",true,[["instance_id",null,null,null,n _pico_table=space_id("_pico_table"), _pico_index=space_id("_pico_index"), ) - assert preprocess(raft_log) == preprocess(expected) + try: + assert preprocess(raft_log) == preprocess(expected) + except AssertionError as e: + # hide the huge string variables from the verbose pytest output enabled + # by the `--showlocals` option + del raft_log + del expected + raise e from e def test_governor_notices_restarts(instance: Instance):