Skip to content

Commit d0c5de8

Browse files
Fix wrong parameters passed in SVM test (#286)
Signed-off-by: Misiak, Konstanty <[email protected]>
1 parent 4084ca2 commit d0c5de8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conformance_tests/core/test_memory/src/test_svm.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ LZT_TEST_P(
8585
lzt::destroy_command_bundle(cmd_bundle);
8686
lzt::destroy_function(function);
8787

88-
lzt::free_memory_with_allocator_selector(source, is_dst_shared_system);
89-
lzt::free_memory_with_allocator_selector(result, is_src_shared_system);
88+
lzt::free_memory_with_allocator_selector(source, is_src_shared_system);
89+
lzt::free_memory_with_allocator_selector(result, is_dst_shared_system);
9090
}
9191

9292
struct SharedSystemMemoryTestsNameSuffix {

0 commit comments

Comments
 (0)