Actions
Bug #15142
closedSome tests in hammer-cli-katello use MiniTest's assert() method improperly
Difficulty:
Triaged:
Bugzilla link:
Description
Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1338813
Description of problem:
The assert() method is improperly used in several locations, causing tests to pass when they should potentially fail.
Version-Release number of selected component (if applicable):
upstream
How reproducible:
always
Steps to Reproduce:
N/A
Actual results:
N/A
Expected results:
N/A
Additional info:
Most of these tests use assert() like assert_equal(x, y), where the assertion is dependent on the equality of x and y. The assert(x, msg) method asserts that x is a true value, and provides msg when the assertion fails.
Actions