d3dcompiler_43/tests: Fix a needless spelling error in a test.

Francois Gouget fgouget at free.fr
Fri Apr 15 07:27:14 CDT 2016


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/d3dcompiler_43/tests/reflection.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/d3dcompiler_43/tests/reflection.c b/dlls/d3dcompiler_43/tests/reflection.c
index 70c062e..9d77d47 100644
--- a/dlls/d3dcompiler_43/tests/reflection.c
+++ b/dlls/d3dcompiler_43/tests/reflection.c
@@ -1296,7 +1296,7 @@ static void test_reflection_constant_buffer(void)
     ok(t11_valid != t11_dummy && t11_valid, "GetType failed\n");
 
     /* reflection calls */
-    cb11 = ref11->lpVtbl->GetConstantBufferByName(ref11, "invaild");
+    cb11 = ref11->lpVtbl->GetConstantBufferByName(ref11, "invalid");
     ok(cb11_dummy == cb11, "GetConstantBufferByName failed, got %p, expected %p\n", cb11, cb11_dummy);
 
     cb11 = ref11->lpVtbl->GetConstantBufferByName(ref11, NULL);
@@ -1305,7 +1305,7 @@ static void test_reflection_constant_buffer(void)
     v11 = ref11->lpVtbl->GetVariableByName(ref11, NULL);
     ok(v11_dummy == v11, "GetVariableByIndex failed, got %p, expected %p\n", v11, v11_dummy);
 
-    v11 = ref11->lpVtbl->GetVariableByName(ref11, "invaild");
+    v11 = ref11->lpVtbl->GetVariableByName(ref11, "invalid");
     ok(v11_dummy == v11, "GetVariableByName failed, got %p, expected %p\n", v11, v11_dummy);
 
     v11 = ref11->lpVtbl->GetVariableByName(ref11, "a");
-- 
2.8.0.rc3




More information about the wine-patches mailing list