From 5d51e9aaf3802968a1605638a971634b8b86777a Mon Sep 17 00:00:00 2001 From: williexu Date: Tue, 16 Oct 2018 16:19:10 -0700 Subject: [PATCH] make scrubbed over value valid base64 --- src/azure-cli-testsdk/azure/cli/testsdk/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py index bca98b32a71..2d96c7b576e 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py @@ -50,7 +50,7 @@ def force_progress_logging(): class StorageAccountKeyReplacer(RecordingProcessor): """Replace the access token for service principal authentication in a response body.""" - def __init__(self, replacement='veryFakedStorageAccountKey'): + def __init__(self, replacement='veryFakedStorageAccountKey=='): self._replacement = replacement self._activated = False