Some assert statements are being unnecessarily complicated, there are overloads that support all cases for comparison of native types. Using the correct APIs increases the readability and expressiveness of code. There are many instances where assert calls can be improved, below I have outlined some general examples.
In the following lines, the == operator can be omitted:
Here a specialised assert can be used:
Avoid using the Solidity native assert statement, when you can use the APIs from Forge:
