diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/typerel/tnoargopenarray.nim | 2 | ||||
-rw-r--r-- | tests/typerel/typalias.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/typerel/tnoargopenarray.nim b/tests/typerel/tnoargopenarray.nim index 20ebe5ecc..3e65194ff 100644 --- a/tests/typerel/tnoargopenarray.nim +++ b/tests/typerel/tnoargopenarray.nim @@ -1,7 +1,7 @@ import db_sqlite -var db: DbConn +var db: TDbConn exec(db, sql"create table blabla()") diff --git a/tests/typerel/typalias.nim b/tests/typerel/typalias.nim index 40ff06765..55dcb9fa6 100644 --- a/tests/typerel/typalias.nim +++ b/tests/typerel/typalias.nim @@ -1,7 +1,7 @@ type TMyObj = TYourObj - TYourObj = object of TObject + TYourObj = object of RootObj x, y: int proc init: TYourObj = |