(a, b, *args, **kwargs)
| 110 | |
| 111 | |
| 112 | def assertIsNotClose(a, b, *args, **kwargs): |
| 113 | assert isclose(a, b, *args, **kwargs) == False, "%s and %s should not be close!" % ( |
| 114 | a, |
| 115 | b, |
| 116 | ) |
| 117 | |
| 118 | |
| 119 | def assertAllClose(examples, *args, **kwargs): |
no test coverage detected