Skip to content

Commit

Permalink
fix(tests/gdrive): Don't derive file name from seed
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Apr 2, 2024
1 parent f1994c1 commit e9f94e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit e9f94e1

Please sign in to comment.