From 1cc5352bece1b7d3b83315055ed4d56367a53f8d Mon Sep 17 00:00:00 2001 From: Andrey Prjibelski Date: Thu, 9 May 2024 00:01:19 +0300 Subject: [PATCH] fix --test --- isoquant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isoquant.py b/isoquant.py index eaf1da24..d83dac80 100755 --- a/isoquant.py +++ b/isoquant.py @@ -789,7 +789,7 @@ def _check_log(): with open('isoquant_test/isoquant.log', 'r') as f: log = f.read() - correct_results = ['total assignments 4', 'polyA tail detected in 2', 'unique: 1', 'known: 2', 'Processed 1 sample'] + correct_results = ['total assignments 4', 'polyA tail detected in 2', 'unique: 1', 'known: 2', 'Processed 1 experiment'] return all([result in log for result in correct_results])