summaryrefslogtreecommitdiff
path: root/testsuites/validation/tc-object.c
diff options
context:
space:
mode:
Diffstat (limited to '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 );
}
/**