Skip to content

Commit

Permalink
Syntax error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
kidunot89 committed Jul 2, 2020
1 parent bf33b7f commit 6be4f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests/connectors/test-class-connector-acf.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function update_acf_field_group( $config = [] ) {
'description' => '',
];

return acf_update_field_group( array_merge( $defaults, $config ) );
return \acf_update_field_group( array_merge( $defaults, $config ) );
}

public function update_acf_field( $config = [] ) {
Expand All @@ -75,7 +75,7 @@ public function update_acf_field( $config = [] ) {
'maxlength' => '',
];

return acf_update_field( array_merge( $defaults, $config ) );
return \acf_update_field( array_merge( $defaults, $config ) );
}

public function test_acf_installed_and_activated() {
Expand Down

0 comments on commit 6be4f3f

Please sign in to comment.