Anton Baskanov (@baskanov) commented about dlls/amstream/tests/amstream.c:
- ok(hr == S_OK, "Got hr %#lx.\n", hr);
- props.cbAlign = 1;
- props.cbBuffer = 10000;
- props.cBuffers = 0;
- props.cbPrefix = 0;
- hr = IMemAllocator_SetProperties(new_allocator, &props, &props2);
- ok(hr == S_OK, "Got hr %#lx.\n", hr);
- hr = IMemInputPin_NotifyAllocator(mem_input, new_allocator, TRUE);
- ok(hr == S_OK, "Got hr %#lx.\n", hr);
- mem_allocator = NULL;
- hr = IMemInputPin_GetAllocator(mem_input, &mem_allocator);
- ok(hr == S_OK, "Got hr %#lx.\n", hr);
- todo_wine ok (mem_allocator == ddraw_allocator, "Expected GetAllocator to return ddraw allocator.\n");
```suggestion:-0+0 todo_wine ok(mem_allocator == ddraw_allocator, "Expected GetAllocator to return ddraw allocator.\n"); ```