@@ -58,7 +58,7 @@ TEST_F(RaytraceNodeTest, config_velocity_invalid_node_object)
58
58
const rgl_vec3f linearVelocity = {1 .0f , 2 .0f , 3 .0f };
59
59
const rgl_vec3f angularVelocity = {4 .0f , 5 .0f , 6 .0f };
60
60
EXPECT_RGL_INVALID_OBJECT (rgl_node_raytrace_configure_velocity ((rgl_node_t ) 0x1234 , &linearVelocity, &angularVelocity),
61
- " Object does not exist: Node 0x1234" );
61
+ " Object does not exist: " , " Node 0x1234" );
62
62
}
63
63
64
64
TEST_F (RaytraceNodeTest, config_velocity_valid_arguments)
@@ -78,7 +78,7 @@ TEST_F(RaytraceNodeTest, config_distortion_invalid_argument_node)
78
78
TEST_F (RaytraceNodeTest, config_distortion_invalid_node_object)
79
79
{
80
80
EXPECT_RGL_INVALID_OBJECT (rgl_node_raytrace_configure_distortion ((rgl_node_t ) 0x1234 , false ),
81
- " Object does not exist: Node 0x1234" );
81
+ " Object does not exist: " , " Node 0x1234" );
82
82
}
83
83
84
84
TEST_F (RaytraceNodeTest, config_distortion_valid_arguments)
@@ -96,7 +96,7 @@ TEST_F(RaytraceNodeTest, config_non_hit_distance_invalid_argument_node)
96
96
TEST_F (RaytraceNodeTest, config_non_hit_distance_invalid_node_object)
97
97
{
98
98
EXPECT_RGL_INVALID_OBJECT (rgl_node_raytrace_configure_non_hits ((rgl_node_t ) 0x1234 , 0 .0f , 0 .0f ),
99
- " Object does not exist: Node 0x1234" );
99
+ " Object does not exist: " , " Node 0x1234" );
100
100
}
101
101
102
102
TEST_F (RaytraceNodeTest, config_non_hit_distance_valid_arguments)
0 commit comments