Skip to content

Commit 4c41e47

Browse files
committed
tests: fix minor bug
Signed-off-by: John Titor <[email protected]>
1 parent 1d7c91b commit 4c41e47

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/AdminManagement.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,9 @@ describe("Admin Management Integration Tests", function () {
190190
[
191191
nonAdmin.account.address,
192192
"Test Candidate",
193-
Math.floor(new Date().getTime() / 1000) - 30 * 365 * 24 * 60 * 60, // 30 years old
193+
BigInt(
194+
Math.floor(new Date().getTime() / 1000) - 30 * 365 * 24 * 60 * 60
195+
), // 30 years old
194196
0, // Male
195197
"123 Admin St",
196198

0 commit comments

Comments
 (0)