Skip to content

Commit

Permalink
Fixed units
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-karkus committed Nov 29, 2024
1 parent a8ef2a8 commit c012bc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Generator/SqlGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function testGenerate(): void
CODE,
);

$code = $migrationSqlGenerator->generate($this->sql, true, false,80);
$code = $migrationSqlGenerator->generate($this->sql, true, 80);

self::assertSame($expectedCode, $code);
}
Expand All @@ -83,7 +83,7 @@ public function testGenerationWithoutCheckingDatabasePlatform(): void
CODE,
);

$code = $this->migrationSqlGenerator->generate($this->sql, true, false, 80, false);
$code = $this->migrationSqlGenerator->generate($this->sql, true, 80, false);

self::assertSame($expectedCode, $code);
}
Expand All @@ -106,7 +106,7 @@ public function testGenerationWithoutCheckingDatabasePlatformWithConfiguration()
CODE,
);

$code = $this->migrationSqlGenerator->generate($this->sql, true, false,80);
$code = $this->migrationSqlGenerator->generate($this->sql, true, 80);

self::assertSame($expectedCode, $code);
}
Expand Down

0 comments on commit c012bc4

Please sign in to comment.