Skip to content

Commit

Permalink
fix: format errors
Browse files Browse the repository at this point in the history
  • Loading branch information
realmikesolo committed May 1, 2024
1 parent 5868dec commit 8933293
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions integration-tests/tests/pg.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import type { TestFn } from 'ava';
import anyTest from 'ava';
import Docker from 'dockerode';
import {
TransactionRollbackError,
and,
arrayContained,
arrayContains,
Expand All @@ -27,11 +26,12 @@ import {
name,
or,
placeholder,
type SQL,
sql,
type SQLWrapper,
sum,
sumDistinct,
type SQL,
type SQLWrapper,
TransactionRollbackError,
} from 'drizzle-orm';
import { drizzle, type NodePgDatabase } from 'drizzle-orm/node-postgres';
import { migrate } from 'drizzle-orm/node-postgres/migrator';
Expand All @@ -56,11 +56,11 @@ import {
macaddr,
macaddr8,
numeric,
type PgColumn,
pgEnum,
pgMaterializedView,
pgTable,
pgTableCreator,
uuid as pgUuid,
pgView,
primaryKey,
serial,
Expand All @@ -71,13 +71,13 @@ import {
unionAll,
unique,
uniqueKeyName,
uuid as pgUuid,
varchar,
type PgColumn,
} from 'drizzle-orm/pg-core';
import getPort from 'get-port';
import pg from 'pg';
import { v4 as uuid } from 'uuid';
import { Expect, randomString, type Equal } from './utils.ts';
import { type Equal, Expect, randomString } from './utils.ts';

const { Client } = pg;

Expand Down

0 comments on commit 8933293

Please sign in to comment.