Skip to content

Commit e187648

Browse files
committed
Tweaks
1 parent 90b41c6 commit e187648

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"vespula/locale": "^2.0"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": "^11.5.21",
31+
"phpunit/phpunit": "^12.0 || ^11.0",
3232
"php-coveralls/php-coveralls": "^2.5.2",
3333
"vimeo/psalm": "^6.0",
3434
"rector/rector": "^2.0.17",

tests/FrameworkHelpersTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ public function testThat_sMVC_DumpAuthinfo_WorksAsExpected() {
107107

108108
public function testThat_sMVC_DumpVar_WorksAsExpected() {
109109

110-
$expected_needle = 'string(11) "Hello world"';
111-
$expected_needle2 = 'int(777)';
110+
$expected_needle = 'Hello world';
111+
$expected_needle2 = '777';
112112
$func_wrapper = function(...$vals) { sMVC_DumpVar(...$vals); };
113113

114114
$result = $this->execVoidFuncCaptureAndReturnOutput($func_wrapper, "Hello world");

0 commit comments

Comments
 (0)