From 83fee7456de7a0789cc08f12691a17eb36bd6319 Mon Sep 17 00:00:00 2001 From: Andrey Gusev Date: Sun, 1 May 2016 11:24:36 +0300 Subject: [PATCH] shell32/tests: Fix a typo in comment. Signed-off-by: Andrey Gusev Signed-off-by: Alexandre Julliard --- dlls/shell32/tests/assoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/tests/assoc.c b/dlls/shell32/tests/assoc.c index 9cd6aeb3b07..c4250389f9b 100644 --- a/dlls/shell32/tests/assoc.c +++ b/dlls/shell32/tests/assoc.c @@ -160,7 +160,7 @@ static void test_IQueryAssociations_GetString(void) r = RegSetValueExW(test_extension_key, NULL, 0, REG_SZ, (PBYTE)test_progidW, sizeof(test_progidW)); ok(r == ERROR_SUCCESS, "RegSetValueExW(HKCR\\.test, NULL, \"testfile\") failed: 0x%lx\n", r); - /* adding progid key with no information shuld fail to return information */ + /* adding progid key with no information should fail to return information */ r = RegCreateKeyExW(HKEY_CLASSES_ROOT, test_progidW, 0, NULL, 0, KEY_ALL_ACCESS, NULL, &test_progid_key, NULL); ok(r == ERROR_SUCCESS, "RegCreateKeyExW(HKCR, \"testfile\") failed: 0x%lx\n", r); getstring_test(test_extensionW, NULL, ASSOCSTR_DEFAULTICON, NULL, __LINE__);