Module: wine Branch: master Commit: 304bbbeaa7cdcc1b6b442dded4e3a8d64c60bfbc URL: http://source.winehq.org/git/wine.git/?a=commit;h=304bbbeaa7cdcc1b6b442dded4...
Author: Francois Gouget fgouget@free.fr Date: Fri Apr 15 14:27:14 2016 +0200
d3dcompiler_43/tests: Fix a needless spelling error in a test.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Matteo Bruni mbruni@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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");