Skip to content

Commit

Permalink
Fix typo in table name
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamVyborny committed May 14, 2024
1 parent 4e79f7c commit 19af317
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Manifest/ManifestManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public function getTableManifest(string $tableName, bool $asObject = false)
{
$baseDir = implode('/', [$this->dataDir, 'in', 'tables']);
$manifestArray = $this->loadManifest($tableName, $baseDir);
var_dump($manifestArray);

return $asObject ? ManifestOptions::fromArray($manifestArray) : $manifestArray;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Manifest/ManifestManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public function testLoadNewDataTypesTableManifestAsObject(): void

$this->assertEquals(
$expectedManifest,
$manager->getTableManifest('newDataTypes', true),
$manager->getTableManifest('newDatatypes', true),
);
}

Expand Down

0 comments on commit 19af317

Please sign in to comment.