Skip to content

Commit 324ce39

Browse files
committed
Removed global import
1 parent 5ee6096 commit 324ce39

File tree

1 file changed

+2
-2
lines changed
  • packages/database/test/helpers

1 file changed

+2
-2
lines changed

packages/database/test/helpers/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
import * as Util from '@firebase/util';
18+
import { uuidv4 } from '@firebase/util';
1919

2020
import { Database, ref } from '../../src';
2121
import { ConnectionTarget } from '../../src/api/test_access';
@@ -82,6 +82,6 @@ export function waitFor(waitTimeInMS: number) {
8282

8383
// Creates a unique reference using uuid
8484
export function getUniqueRef(db: Database) {
85-
const path = Util.uuidv4();
85+
const path = uuidv4();
8686
return { ref: ref(db, path), path };
8787
}

0 commit comments

Comments
 (0)