Skip to content

Commit

Permalink
fix: address linting errors, replaced single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-golden committed Jul 22, 2020
1 parent 50b4002 commit 7685c17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/github-issues/6642/issue-6642.ts
Expand Up @@ -8,7 +8,7 @@ import {
import { Connection, createConnection } from "../../../src";
import { fail } from "assert";
import { Query } from "../../../src/driver/Query";
import { MysqlConnectionOptions } from '../../../src/driver/mysql/MysqlConnectionOptions';
import { MysqlConnectionOptions } from "../../../src/driver/mysql/MysqlConnectionOptions";

describe("github issues > #6642 JoinTable does not respect inverseJoinColumns referenced column width", () => {
let connections: Connection[];
Expand All @@ -24,7 +24,7 @@ describe("github issues > #6642 JoinTable does not respect inverseJoinColumns re
beforeEach(() => reloadTestingDatabases(connections));
after(() => closeTestingConnections(connections));

it("should generate a drop and create step", async () => {
it("should generate column widths equal to the referenced column widths", async () => {
return Promise.all(
connections.map(async function (connection) {
const options = setupSingleTestingConnection(
Expand Down

0 comments on commit 7685c17

Please sign in to comment.