mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-30 03:03:57 +00:00
less test time costs (#20479)
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import unittest
|
||||
|
||||
type Obj = object
|
||||
foo: int
|
||||
@@ -10,9 +9,9 @@ block: # object basic methods
|
||||
block: # it should convert an object to a string
|
||||
var obj = makeObj(1)
|
||||
# Should be "obj: (foo: 1)" or similar.
|
||||
check($obj == "(foo: 1)")
|
||||
doAssert($obj == "(foo: 1)")
|
||||
block: # it should test equality based on fields
|
||||
check(makeObj(1) == makeObj(1))
|
||||
doAssert(makeObj(1) == makeObj(1))
|
||||
|
||||
# bug #10203
|
||||
|
||||
|
||||
Reference in New Issue
Block a user