From 1881678045f4952bf58c8ed89abec40746963c1b Mon Sep 17 00:00:00 2001 From: Alex Samuel Date: Tue, 23 Jul 2024 10:53:39 -0400 Subject: [PATCH] Update test/int/litestream/test_replica.py --- test/int/litestream/test_replica.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/int/litestream/test_replica.py b/test/int/litestream/test_replica.py index 0515c1d2..e3bab5cd 100644 --- a/test/int/litestream/test_replica.py +++ b/test/int/litestream/test_replica.py @@ -15,7 +15,7 @@ def is_litestream_available(): - return True if shutil.which("litestream") else False + return shutil.which("litestream") is not None def start_litestream(db_path, replica_path):