Skip to content

Commit

Permalink
fix missing closing bracket after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
remyperona committed Feb 5, 2019
1 parent 28dcea4 commit e7650dd
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions tests/ConverterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,20 +82,6 @@ public function dataProvider()
'../some_random_folder_name/image.jpg',
);

// https://github.com/matthiasmullie/path-converter/issues/6
$tests[] = array(
'./../images/header-section/HeroImage.jpg',
'/wordpress/wp-content/themes/racine/styles/',
'/wordpress/wp-content/cache/min/',
'../../themes/racine/images/header-section/HeroImage.jpg',
);

// https://github.com/matthiasmullie/path-converter/issues/6
$tests[] = array(
'../images/./header-section/HeroImage2.jpg',
'/wordpress/wp-content/themes/racine/styles/',
'/wordpress/wp-content/cache/min/',
'../../themes/racine/images/header-section/HeroImage2.jpg',
$tests[] = array(
'image.jpg',
'/var/www/',
Expand All @@ -118,6 +104,22 @@ public function dataProvider()
'../../../typo3conf/ext/user_merkl/Resources/Public/Fonts/webfontkit-rotissanser/rotissanser-webfont.eot',
);

// https://github.com/matthiasmullie/path-converter/issues/6
$tests[] = array(
'./../images/header-section/HeroImage.jpg',
'/wordpress/wp-content/themes/racine/styles/',
'/wordpress/wp-content/cache/min/',
'../../themes/racine/images/header-section/HeroImage.jpg',
);

// https://github.com/matthiasmullie/path-converter/issues/6
$tests[] = array(
'../images/./header-section/HeroImage2.jpg',
'/wordpress/wp-content/themes/racine/styles/',
'/wordpress/wp-content/cache/min/',
'../../themes/racine/images/header-section/HeroImage2.jpg',
);

return $tests;
}
}

0 comments on commit e7650dd

Please sign in to comment.