summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-03-05 11:53:12 +0100
committerSergio Ahumada <sahumada@blackberry.com>2014-03-05 19:52:21 +0100
commita23a7a35e251a0af306879548e61d1bad4dafd19 (patch)
treeddf1dc8a3c10bf8f6ef0e7630c192922e275abcc /tests
parentaa5747a5f3b6284caebaf3c8e62ea677ba0fd905 (diff)
Fix typos in comments and documentation
Change-Id: I03d99ae5eb9266195ff9ab1c73b5ebd8e548e6bc Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test-framework/checker/testrunner/registry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-framework/checker/testrunner/registry.py b/tests/test-framework/checker/testrunner/registry.py
index 430324ad8..ccbab655c 100644
--- a/tests/test-framework/checker/testrunner/registry.py
+++ b/tests/test-framework/checker/testrunner/registry.py
@@ -53,7 +53,7 @@ _registry["HKEY_USERS"] = _winreg.HKEY_USERS
_registry["HKEY_CURRENT_CONFIG"] = _winreg.HKEY_CURRENT_CONFIG
def splitKey( key ):
- key, seperator, subKey = key.partition( '\\' )
+ key, separator, subKey = key.partition( '\\' )
return _registry[key], subKey
def checkKey( key, value, expectedData ):