From e9f94e1c122e8ffac5c6f7ade2251f36152aa0d2 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Tue, 2 Apr 2024 20:38:02 +0200 Subject: [PATCH] fix(tests/gdrive): Don't derive file name from seed Signed-off-by: Marcel Klehr --- src/test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/test.js b/src/test/test.js index 1b0269103a..09fa673a86 100644 --- a/src/test/test.js +++ b/src/test/test.js @@ -128,13 +128,13 @@ describe('Floccus', function() { }, { type: 'google-drive', - bookmark_file: random.float() + '.xbel', + bookmark_file: Math.random() + '.xbel', password: '', refreshToken: CREDENTIALS.password, }, { type: 'google-drive', - bookmark_file: random.float() + '.xbel', + bookmark_file: Math.random() + '.xbel', password: random.float(), refreshToken: CREDENTIALS.password, },