diff --git a/test-d/index.ts b/test-d/index.ts
index ceccb3f990a1e7a0bbd7d0119341386ef0efef95..18e8fef8c2252dcec4180f70c10682150ee726e6 100644
--- a/test-d/index.ts
+++ b/test-d/index.ts
@@ -10,5 +10,5 @@ describe('#getNodeByType', () => {
 	it('returns node that has sprcified type', () => {
 		const x = null as unknown as getNodeByType<'url'>;
 		expectType<MfmUrl>(x);
-	})
+	});
 });