X-Git-Url: http://nitlanguage.org diff --git a/tests/contracts_same_contract.nit b/tests/contracts_same_contract.nit index a34005f..93e7f65 100644 --- a/tests/contracts_same_contract.nit +++ b/tests/contracts_same_contract.nit @@ -18,8 +18,8 @@ class MyClass fun foo(x: Int) is - expects(x == 10) - expects(x >= 10) + expect(x == 10) + expect(x >= 10) do x = 0 end