summary refs log tree commit diff stats
path: root/tests/compiler/tunittest_light.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compiler/tunittest_light.nim')
-rw-r--r--tests/compiler/tunittest_light.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compiler/tunittest_light.nim b/tests/compiler/tunittest_light.nim
index 422474002..2951cc664 100644
--- a/tests/compiler/tunittest_light.nim
+++ b/tests/compiler/tunittest_light.nim
@@ -1,8 +1,8 @@
-import compiler/unittest_light
+import stdtest/unittest_light
 
 proc testAssertEquals() =
   assertEquals("foo", "foo")
-  doAssertRaises(AssertionError):
+  doAssertRaises(AssertionDefect):
     assertEquals("foo", "foo ")
 
 proc testMismatch() =