From b6ab91a6062deae17b8f445686bf470f99579ccd Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 12 Nov 2021 19:45:28 +0300 Subject: [PATCH] Fix an example --- base-notebook/test/test_container_options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base-notebook/test/test_container_options.py b/base-notebook/test/test_container_options.py index 9c8b8c9f..ca8b61fe 100644 --- a/base-notebook/test/test_container_options.py +++ b/base-notebook/test/test_container_options.py @@ -249,14 +249,14 @@ def test_jupyter_env_vars_to_unset_as_root(container): environment=[ "JUPYTER_ENV_VARS_TO_UNSET=SECRET_ANIMAL,UNUSED_ENV,SECRET_FRUIT", "FRUIT=bananas", - "SECRET_FRUIT=mango", "SECRET_ANIMAL=cats", + "SECRET_FRUIT=mango", ], command=[ "start.sh", "bash", "-c", - "echo I like $FRUIT and ${SECRET_FRUIT:-stuff}, and love ${SECRET_LOVE:-to keep secrets}!", + "echo I like $FRUIT and ${SECRET_FRUIT:-stuff}, and love ${SECRET_ANIMAL:-to keep secrets}!", ], ) rv = c.wait(timeout=10)