From: Stephen Warren Date: Thu, 28 Jan 2016 17:18:03 +0000 (-0700) Subject: test/py: fix a couple typos in comments X-Git-Tag: v2016.03-rc1~41^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=db261f0076109b79c813ff27b9ce30e2e9d05221;p=oweals%2Fu-boot.git test/py: fix a couple typos in comments s/updata/update/. Signed-off-by: Stephen Warren Reviewed-by: Simon Glass --- diff --git a/test/py/tests/test_env.py b/test/py/tests/test_env.py index 651303f8cd..c41aa5a9d9 100644 --- a/test/py/tests/test_env.py +++ b/test/py/tests/test_env.py @@ -94,7 +94,7 @@ def unset_var(state_test_env, var): object. Args: - state_test_env: The StateTestEnv object to updata. + state_test_env: The StateTestEnv object to update. var: The variable name to unset. Returns: @@ -112,7 +112,7 @@ def set_var(state_test_env, var, value): object. Args: - state_test_env: The StateTestEnv object to updata. + state_test_env: The StateTestEnv object to update. var: The variable name to set. value: The value to set the variable to.