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-26 13:56:27 +0200
commit2c7c22c0fc67e4a9be8dcef96f6adde15457a5fc (patch)
tree5d09231268385d2ec1c3ae803c2088d52a6fd5ad
parent8055738b012bdc6b6bdd19affdecbd3427a2f111 (diff)
testsuites/validation/tc-object.cqual-28
-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 );
}
/**