assertFloatsNotEqual

lsst.utils.tests.assertFloatsNotEqual(testCase: TestCase, lhs: float | ndarray, rhs: float | ndarray, **kwds: Any) None

Fail a test if the given floating point values are equal to within the given tolerances.

See assertFloatsAlmostEqual (called with rtol=atol=0) for more information.

Parameters:
testCaseunittest.TestCase

Instance the test is part of.

lhsscalar or array-like

LHS value(s) to compare; may be a scalar or array-like of any dimension.

rhsscalar or array-like

RHS value(s) to compare; may be a scalar or array-like of any dimension.

**kwdsAny

Keyword parameters forwarded to assertFloatsAlmostEqual.

Raises:
AssertionError

The values are almost equal.