From ae6a000e8140c331b402d17e74e33a66a899a5f8 Mon Sep 17 00:00:00 2001 From: John McCann Cunniff Jr Date: Mon, 13 Nov 2023 13:31:47 -0500 Subject: [PATCH] FIX update test for new NETID env var in IDE --- api/tests/test_ide_k8s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/test_ide_k8s.py b/api/tests/test_ide_k8s.py index 661597e39..0a96ea9ff 100644 --- a/api/tests/test_ide_k8s.py +++ b/api/tests/test_ide_k8s.py @@ -87,7 +87,7 @@ def test_playground_k8s(): # Check env theia_env = {env.name: env.value for env in theia_container.env} - assert theia_env == {'AUTOSAVE': 'OFF', 'REPO_NAME': ''} + assert theia_env == {'AUTOSAVE': 'OFF', 'REPO_NAME': '', 'NETID': s.netid} # Check ports theia_ports = {port.container_port for port in theia_container.ports}