diff --git a/t/05-tabs.rakutest b/t/05-tabs.rakutest index 34a75dd1a..889e8d0ee 100755 --- a/t/05-tabs.rakutest +++ b/t/05-tabs.rakutest @@ -7,10 +7,7 @@ use Test-Files; my @files = Test-Files.files\ .grep({$_ ne 'LICENSE'|'Makefile'})\ - .grep({! $_.contains('custom-theme')})\ - .grep({! $_.ends-with('.png')})\ - .grep({! $_.ends-with('.svg')})\ - .grep({! $_.ends-with('.ico')}); + .grep({! $_.contains('custom-theme')}); plan +@files; diff --git a/xt/final-newline.rakutest b/xt/final-newline.rakutest index 62904ecee..1bc49ed3e 100755 --- a/xt/final-newline.rakutest +++ b/xt/final-newline.rakutest @@ -13,10 +13,7 @@ Make sure that text files end in a newline my @files = Test-Files.files\ .grep({$_ ne 'LICENSE'})\ .grep({! $_.contains: 'custom-theme'})\ - .grep({! $_.contains: 'util/trigger-rebuild.txt'})\ - .grep({! $_.ends-with: '.png'})\ - .grep({! $_.ends-with: '.svg'})\ - .grep({! $_.ends-with: '.ico'}); + .grep({! $_.contains: 'util/trigger-rebuild.txt'}); if @files { plan +@files; diff --git a/xt/vim-mode.rakutest b/xt/vim-mode.rakutest index 1c489f494..12980cf16 100755 --- a/xt/vim-mode.rakutest +++ b/xt/vim-mode.rakutest @@ -14,8 +14,7 @@ https://github.com/Raku/doc/issues/3058 =end overview -my @files = Test-Files.files\ - .grep({! $_.ends-with: '.png' | '.ico'}); +my @files = Test-Files.files; if @files { plan +@files;