Skip to content

Commit

Permalink
Fix wrong unittest value in WbemcliTest
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasblaesing committed Oct 28, 2018
1 parent 1a103cb commit cc7d417
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public void testShowProperties() {
assertTrue(year > 1970);
assertTrue(month >= 1 && month <= 12);
assertTrue(day >= 1 && day <= 31);
assertTrue(hour >= 0 && day <= 23);
assertTrue(hour >= 0 && hour <= 23);
assertTrue(minute >= 0 && minute <= 59);
assertTrue(second >= 0 && second <= 59);
OleAuto.INSTANCE.VariantClear(pVal);
Expand Down

0 comments on commit cc7d417

Please sign in to comment.