mf/tests: Fix typos in test messages.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2019-02-26 16:06:28 +03:00 committed by Alexandre Julliard
parent 637e01e217
commit 22b304fd1d
1 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ static void test_topology(void)
IMFCollection_Release(collection); IMFCollection_Release(collection);
hr = IMFTopology_GetOutputNodeCollection(topology, &collection); hr = IMFTopology_GetOutputNodeCollection(topology, &collection);
ok(hr == S_OK || broken(hr == E_FAIL) /* before Win8 */, "Failed to get source node collection, hr %#x.\n", hr); ok(hr == S_OK || broken(hr == E_FAIL) /* before Win8 */, "Failed to get output node collection, hr %#x.\n", hr);
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
ok(!!collection, "Unexpected object pointer.\n"); ok(!!collection, "Unexpected object pointer.\n");
@ -313,7 +313,7 @@ static void test_topology(void)
IMFTopologyNode_Release(node); IMFTopologyNode_Release(node);
hr = IMFTopology_GetOutputNodeCollection(topology, &collection); hr = IMFTopology_GetOutputNodeCollection(topology, &collection);
ok(hr == S_OK, "Failed to get source node collection, hr %#x.\n", hr); ok(hr == S_OK, "Failed to get output node collection, hr %#x.\n", hr);
ok(!!collection, "Unexpected object pointer.\n"); ok(!!collection, "Unexpected object pointer.\n");
hr = IMFCollection_GetElementCount(collection, &size); hr = IMFCollection_GetElementCount(collection, &size);
ok(hr == S_OK, "Failed to get item count, hr %#x.\n", hr); ok(hr == S_OK, "Failed to get item count, hr %#x.\n", hr);