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>
This commit is contained in:
Francois Gouget 2016-04-15 14:27:14 +02:00 committed by Alexandre Julliard
parent 61b09f3fc7
commit 304bbbeaa7
1 changed files with 2 additions and 2 deletions

View File

@ -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");