Skip to content

Commit

Permalink
fix unit test device-properties
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel committed Jul 23, 2024
1 parent defc6f4 commit edf0ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit-tests/dds/test-librs-device-properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
test.check( rs.color_sensor( sensor ))
test.check( sensors[sensor.name] )
test.check_equal( sensor.name, 'RGB Camera' )
test.check_equal( len(sensor.get_stream_profiles()), 192 ) # As measured running rs-sensor-control example
test.check_equal( len(sensor.get_stream_profiles()), 193 ) # As measured running rs-sensor-control example
sensor = dev.first_motion_sensor()
if test.check( sensor ):
test.check( rs.motion_sensor( sensor ))
Expand Down Expand Up @@ -100,7 +100,7 @@
if test.check( sensor ):
test.check( sensors[sensor.name] )
test.check_equal( sensor.name, 'RGB Camera' )
test.check_equal( len(sensor.get_stream_profiles()), 186 ) # As measured running rs-sensor-control example
test.check_equal( len(sensor.get_stream_profiles()), 187 ) # As measured running rs-sensor-control example
sensor = dev.first_motion_sensor()
if test.check( sensor ):
test.check( sensors[sensor.name] )
Expand Down

0 comments on commit edf0ecb

Please sign in to comment.