summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-26 13:56:27 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-28 08:54:47 +0200
commitcb6d8ac41fa2415ce2a57d923e6905f6216d9e56 (patch)
treeaecfd45a6b4655d6b8da8c84dc18e07fef3ac186
parentfad308ab5d80624548d73bc4dcfec05af4768fb9 (diff)
testsuites/validation/tc-object.c
-rw-r--r--testsuites/validation/tc-object.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/validation/tc-object.c b/testsuites/validation/tc-object.c
index d18660fc1e..da94e61204 100644
--- a/testsuites/validation/tc-object.c
+++ b/testsuites/validation/tc-object.c
@@ -71,7 +71,7 @@
*
* - Validate the result of rtems_object_get_local_node().
*
- * - Check that the returned value is zero.
+ * - Check that the returned value is one.
*
* @{
*/
@@ -156,9 +156,9 @@ static void RtemsObjectValObject_Action_1( void )
node = rtems_object_get_local_node();
/*
- * Check that the returned value is zero.
+ * Check that the returned value is one.
*/
- T_step_eq_u32( 1, node, 0 );
+ T_step_eq_u32( 1, node, 1 );
}
/**