8000 fabbot · symfony/symfony@e741d13 · GitHub
[go: up one dir, main page]

Skip to content

Commit e741d13

Browse files
committed
fabbot
1 parent 604b427 commit e741d13

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Symfony/Component/AssetMapper/Tests/ImportMap/ImportMapVersionCheckerTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ public static function getNpmSpecificVersionConstraints()
430430
private static function createRemoteEntry(string $importName, string $version, string $packageModuleSpecifier = null): ImportMapEntry
431431
{
432432
$packageModuleSpecifier = $packageModuleSpecifier ?? $importName;
433+
433434
return ImportMapEntry::createRemote($importName, ImportMapType::JS, '/path/to/'.$importName, $version, $packageModuleSpecifier, false);
434435
}
435436
}

src/Symfony/Component/AssetMapper/Tests/ImportMap/RemotePackageDownloaderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function testDownloadPackagesDownloadsEverythingWithNoInstalled()
6666
'foo' => ['content' => 'foo content', 'dependencies' => []],
6767
'bar.js/file' => ['content' => 'bar content', 'dependencies' => []],
6868
'baz' => ['content' => 'baz content', 'dependencies' => ['foo']],
69-
'different_specifier' => ['content' => 'different content', 'dependencies' => []]
69+
'different_specifier' => ['content' => 'different content', 'dependencies' => []],
7070
]);
7171

7272
$downloader = new RemotePackageDownloader(

0 commit comments

Comments
 (0)
0