Skip to content

Commit

Permalink
ADRV9002 Test: Updated RxInterfaceGain to test for verifyGreaterThanO…
Browse files Browse the repository at this point in the history
…rEqual instead of verifyGreaterThan

Signed-off-by: Pagadarai <[email protected]>
  • Loading branch information
SrikanthPagadarai committed Oct 18, 2024
1 parent ee6b158 commit 0845b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ADRV9002Tests.m
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function testADRV9002RxInterfaceGain(testCase,InterfaceGain)
[out, valid] = rx();
rx.release();
testCase.verifyTrue(valid);
testCase.verifyGreaterThan(sum(abs(double(out))),0);
testCase.verifyGreaterThanOrEqual(sum(abs(double(out))),0);
end

function testADRV9002RxTracking(testCase,Tracking)
Expand Down

0 comments on commit 0845b78

Please sign in to comment.