From 800f75bfb227d4eb1bcfa64881fe107a806cdbf0 Mon Sep 17 00:00:00 2001 From: Tolu Aina <7848930+toluaina@users.noreply.github.com> Date: Tue, 28 Sep 2021 11:23:30 +0100 Subject: [PATCH] fixed failing tests --- plugins/sample.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/sample.py b/plugins/sample.py index e910acb7..827529df 100644 --- a/plugins/sample.py +++ b/plugins/sample.py @@ -14,9 +14,9 @@ def transform(self, doc: list, **kwargs) -> dict: def auth(self, key: str) -> Optional[str]: """Sample auth.""" if key == "PG_PASSWORD": - return "abcd" + return None if key == "ELASTICSEARCH_PASSWORD": - return "ijkl" + return None if key == "REDIS_AUTH": return None