You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue with the assertNotEquals output int the current version of the library. The assertion error message does not reflect the expected string values accurately. Specifically, the following test case:
assertNotEquals('1','1');
is expected to throw an error with the message:
AssertionError: Expected actual: '1' not to be: '1'.
However, the current output is: AssertionError: Expected actual: 1 not to be: 1.
Environment
OS: MacOS 12
deno version: 1.44.0
std version: 0.226.0
The text was updated successfully, but these errors were encountered:
There is an issue with the
assertNotEquals
output int the current version of the library. The assertion error message does not reflect the expected string values accurately. Specifically, the following test case:assertNotEquals('1','1');
is expected to throw an error with the message:
AssertionError: Expected actual: '1' not to be: '1'.
However, the current output is:
AssertionError: Expected actual: 1 not to be: 1.
Environment
The text was updated successfully, but these errors were encountered: