Skip to content

Commit 4903cea

Browse files
Restrict build GraphQL test to only the projects it creates (#2670)
#2664 allowed CTest to have more flexibility regarding the ordering of tests. That exposed an issue with the `BuildTypeTest` which relied upon more than just data it created. This PR resolves the issue by restricting the test to use only the data it creates.
1 parent c54e150 commit 4903cea

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/Feature/GraphQL/BuildTypeTest.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,12 @@ public function testBasicBuildFiltering(): void
470470
}
471471

472472
$this->graphQL('
473-
query($buildname: String) {
474-
projects {
473+
query($projectid: ID, $buildname: String) {
474+
projects(filters: {
475+
eq: {
476+
id: $projectid
477+
}
478+
}) {
475479
edges {
476480
node {
477481
name
@@ -491,6 +495,7 @@ public function testBasicBuildFiltering(): void
491495
}
492496
}
493497
', [
498+
'projectid' => $this->project->id,
494499
'buildname' => $builds[2]->name,
495500
])->assertJson([
496501
'data' => [

0 commit comments

Comments
 (0)