Open dabrahams opened 8 months ago
We have lots of checks like this:
XCTAssert((t as IRType) == t)
When that fails, it fails to give some useful information. Should be:
XCTAssertEqual(t as IRType, t)
Do this throughout.
We have lots of checks like this:
When that fails, it fails to give some useful information. Should be:
Do this throughout.