From f4f142e12d0286a25c7307b1efd037a0708c0ab6 Mon Sep 17 00:00:00 2001 From: Zxilly Date: Thu, 20 Jun 2024 04:03:36 +0800 Subject: [PATCH] test: fix test node type Signed-off-by: Zxilly --- ui/src/Tooltip.test.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/Tooltip.test.tsx b/ui/src/Tooltip.test.tsx index 3da49d4e8f..e679863963 100644 --- a/ui/src/Tooltip.test.tsx +++ b/ui/src/Tooltip.test.tsx @@ -16,6 +16,8 @@ function getTestNode(): Entry { return 12345; }, toString(): string { return "test content"; + }, getType(): EntryType { + return "unknown" } } }