Skip to content

Commit 91d4779

Browse files
authored
Update mytest.py
Signed-off-by: Sangeetha Hariharan <122560863+sangee2004@users.noreply.github.com>
1 parent ab1d446 commit 91d4779

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/testenv/mytest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

3-
actual_key = os.getenv('PROMPT')
4-
actual_key1 = os.environ['PROMPT']
3+
prompt = os.getenv('PROMPT')
4+
env_var = os.environ['MY_ENV']
55

6-
print(actual_key)
7-
print(actual_key1)
6+
print(prompt)
7+
print(env_var)

0 commit comments

Comments
 (0)