Skip to content

Commit

Permalink
Change quotes of string in plugin test bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
nishimura-d committed Apr 18, 2022
1 parent 6e87b8c commit 39bfecc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/bake/Plugin/tests/bootstrap.php.twig
Expand Up @@ -34,7 +34,7 @@ $findRoot = function ($root) {
}
} while ($root !== $lastRoot);
throw new Exception("Cannot find the root of the application, unable to run tests");
throw new Exception('Cannot find the root of the application, unable to run tests');
};
$root = $findRoot(__FILE__);
unset($findRoot);
Expand Down
Expand Up @@ -17,7 +17,7 @@
}
} while ($root !== $lastRoot);

throw new Exception("Cannot find the root of the application, unable to run tests");
throw new Exception('Cannot find the root of the application, unable to run tests');
};
$root = $findRoot(__FILE__);
unset($findRoot);
Expand Down
2 changes: 1 addition & 1 deletion tests/comparisons/Plugin/SimpleExample/tests/bootstrap.php
Expand Up @@ -17,7 +17,7 @@
}
} while ($root !== $lastRoot);

throw new Exception("Cannot find the root of the application, unable to run tests");
throw new Exception('Cannot find the root of the application, unable to run tests');
};
$root = $findRoot(__FILE__);
unset($findRoot);
Expand Down

0 comments on commit 39bfecc

Please sign in to comment.