Skip to content

Commit 327d99a

Browse files
committed
Add temporary log to debug failing tests in github action
1 parent af683a3 commit 327d99a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

features/cache-patch.feature

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ Feature: Patch command available for the object cache
66
"""php
77
<?php
88
$set_foo = function(){
9-
wp_cache_set( 'my_key', ['foo' => 'bar'] );
10-
wp_cache_set( 'other_key', ['fuz' => 'biz'] );
9+
//TODO: DEBUG, remove before merging branch.
10+
WP_CLI::log( var_export( wp_cache_set( 'my_key', ['foo' => 'bar'] ), true ) );
11+
WP_CLI::log( var_export( wp_cache_set( 'other_key', ['fuz' => 'biz'] ), true ) );
1112
1213
$complex_key = (object) [
1314
'foo' => (object) [

0 commit comments

Comments
 (0)