Skip to content

Commit

Permalink
gh #47 L1 VTS issue fixes
Browse files Browse the repository at this point in the history
* Removed unwanted checks present in the L1 code.
  • Loading branch information
akhilbhas committed Oct 10, 2024
1 parent 410a30b commit 6fcfe7e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/test_l1_tvSettings.c
Original file line number Diff line number Diff line change
Expand Up @@ -1124,8 +1124,6 @@ void test_l1_tvSettings_positive_GetCurrentVideoResolution (void)
result = GetCurrentVideoResolution(&tvVideoResolution);
UT_ASSERT_EQUAL(result, tvERROR_NONE);

UT_ASSERT_EQUAL(tvVideoResolution.resolutionValue,tvVideoResolution_NONE);

/* Step 03: Calling tvsettings GetCurrentVideoFormat and expectinging the API to return success */
result = GetCurrentVideoResolution(&tvVideoResolutionRetry);
UT_ASSERT_EQUAL(result, tvERROR_NONE);
Expand Down Expand Up @@ -1233,7 +1231,6 @@ void test_l1_tvSettings_positive_GetCurrentVideoFrameRate (void)
result = GetCurrentVideoFrameRate(&tvVideoFramerate);
UT_ASSERT_EQUAL(result, tvERROR_NONE);

UT_ASSERT_EQUAL(tvVideoFramerate,tvVideoFrameRate_NONE)
/* Step 03: Calling tvsettings GetCurrentVideoFormat and expectinging the API to return success */
result = GetCurrentVideoFrameRate(&tvVideoFramerateRetry);
UT_ASSERT_EQUAL(result, tvERROR_NONE);
Expand Down

0 comments on commit 6fcfe7e

Please sign in to comment.