| summaryrefslogtreecommitdiff |
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2020-08-26 11:07:08 +0200 |
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2020-08-26 11:07:08 +0200 |
| commit | 712e11f17c8e7147b6fce5063f68e51315d5fc09 (patch) | |
| tree | 45a0534e9db7140e53aca81c820da950482cf124 /data/tests/operators.fate | |
| parent | 1d6845edc3b9127aed8ad05e68387bd8590efa5a (diff) | |
| parent | 6aec0ce0fb005457b53633b9599998117a1003cf (diff) | |
Merge branch 'master' of dreamhost:~/repositories/git/tonkadur
Diffstat (limited to 'data/tests/operators.fate')
| -rw-r--r-- | data/tests/operators.fate | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/tests/operators.fate b/data/tests/operators.fate index 6598297..de775d9 100644 --- a/data/tests/operators.fate +++ b/data/tests/operators.fate @@ -4,17 +4,17 @@ (assert (= 1 1) FAILED: int equality) (assert (= 1.0 1.0) FAILED: float equality) (assert (= test test) FAILED: string equality) -(assert (= (true) (true)) FAILED: boolean equality) +(assert (= (true) (true)) FAILED: bool equality) (assert (= (= 1 2) (false)) FAILED: int inequality) (assert (= (= 1.0 2.0) (false)) FAILED: float inequality) (assert (= (= one two) (false)) FAILED: string inequality) -(assert (= (= (true) (false)) (false)) FAILED: boolean inequality) +(assert (= (= (true) (false)) (false)) FAILED: bool inequality) (assert (= 1 1 1 1 1) FAILED: int n>2 equality) (assert (= 1.0 1.0 1.0 1.0 1.0) FAILED: float n>2 equality) (assert (= test test test test test) FAILED: string n>2 equality) -(assert (= (true) (true) (true) (true)) FAILED: boolean n>2 equality) +(assert (= (true) (true) (true) (true)) FAILED: bool n>2 equality) ;; ADDITION |


