From 15a4e0ce82caabc5b71ce0594b30763848c3beed Mon Sep 17 00:00:00 2001 From: Guy Nir Date: Sat, 6 Jul 2024 08:34:57 +0300 Subject: [PATCH] remove commented lines --- tests/models/test_background.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/models/test_background.py b/tests/models/test_background.py index 313eeb68..dbd441c2 100644 --- a/tests/models/test_background.py +++ b/tests/models/test_background.py @@ -84,8 +84,9 @@ def test_save_load_backgrounds(decam_raw_image, code_version): t0 = time.perf_counter() b2.save() - print(f'Background save time: {time.perf_counter() - t0:.3f} s') - print(f'Background file size: {os.path.getsize(b2.get_fullpath()) / 1024 ** 2:.3f} MB') + # print(f'Background save time: {time.perf_counter() - t0:.3f} s') + # print(f'Background file size: {os.path.getsize(b2.get_fullpath()) / 1024 ** 2:.3f} MB') + # check the filename contains the provenance hash assert prov.id[:6] in b2.get_fullpath()