Skip to content

Commit ab1309e

Browse files
committed
Fixing CI
1 parent dc3abbf commit ab1309e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.php-cs-fixer.dist.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__DIR__ . '/src',
99
__DIR__ . '/tests',
1010
])->notPath([
11-
'tests/Resources/var',
11+
'tests/Resources/App/var',
1212
]);
1313

1414
$config = new PhpCsFixer\Config();

tests/Twig/CacheWarmer/QuerySourcesIteratorTest.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ public function testItIterates(): void
4343
\sort($templates);
4444

4545
$this->assertEquals([
46-
'get_all_from_default.sql.twig',
47-
'bar/count_from_bar.sql.twig',
48-
'bundles/FooBundle/foo.sql',
49-
'get_all_from_foo.sql.twig',
50-
'@Foo/foo.sql',
5146
'@Bar/bar.sql',
47+
'@Foo/foo.sql',
5248
'@custom-path-1/query-in-path1.sql',
5349
'@custom-path-2/query-in-path2.sql',
50+
'bar/count_from_bar.sql.twig',
51+
'bundles/FooBundle/foo.sql',
52+
'get_all_from_default.sql.twig',
53+
'get_all_from_foo.sql.twig',
5454
], $templates);
5555
}
5656
}

0 commit comments

Comments
 (0)