diff --git a/test/nasa_osal/configuration.xml b/test/nasa_osal/configuration.xml
index 8d236c555..824637759 100644
--- a/test/nasa_osal/configuration.xml
+++ b/test/nasa_osal/configuration.xml
@@ -260,7 +260,7 @@ err = OS_TaskCreate(&tid,
test_assert(err == OS_ERR_NAME_TAKEN, "name conflict not detected");
err = OS_TaskCreate(&tid,
- "another running thread",
+ "conflicting thread",
test_thread1,
(uint32 *)wa_test1,
sizeof wa_test1,
@@ -316,43 +316,43 @@ test_assert_sequence("A", "task not executed");]]>
-
@@ -364,7 +364,7 @@ test_assert(err == OS_SUCCESS, "task 1 creation failed");]]>
-
@@ -376,43 +376,43 @@ test_assert_sequence("ABCD", "task order violation");]]>
-
@@ -424,7 +424,7 @@ test_assert(err == OS_SUCCESS, "task 4 creation failed");]]>
-
@@ -436,43 +436,43 @@ test_assert_sequence("ABCD", "task order violation");]]>
-
@@ -484,7 +484,7 @@ test_assert(err == OS_SUCCESS, "task 3 creation failed");]]>
-
diff --git a/test/nasa_osal/source/test/test_sequence_001.c b/test/nasa_osal/source/test/test_sequence_001.c
index 7c173021e..c5863f171 100644
--- a/test/nasa_osal/source/test/test_sequence_001.c
+++ b/test/nasa_osal/source/test/test_sequence_001.c
@@ -232,7 +232,7 @@ static void test_001_001_execute(void) {
test_assert(err == OS_ERR_NAME_TAKEN, "name conflict not detected");
err = OS_TaskCreate(&tid,
- "another running thread",
+ "conflicting thread",
test_thread1,
(uint32 *)wa_test1,
sizeof wa_test1,