From 9cb10b050e550e1f85a8e60ebf2e85301cdb2ac0 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Mon, 23 May 2016 20:15:12 -0700 Subject: [PATCH] Update test for API change in PS10 of I17ef1f5197 Use $this->getMutableTestUser() instead of $this->getTestUser( true ). Change-Id: Idb41b4842d0c95801dcd5476fa2f3e45153f9c71 --- tests/ApiFlowThankIntegrationTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ApiFlowThankIntegrationTest.php b/tests/ApiFlowThankIntegrationTest.php index 94348ffb..6d62e3ca 100644 --- a/tests/ApiFlowThankIntegrationTest.php +++ b/tests/ApiFlowThankIntegrationTest.php @@ -36,8 +36,8 @@ class ApiFlowThankTest extends ApiTestCase { // mock topic and post if ( method_exists( $this, 'getTestUser' ) ) { - $this->meUser = $this->getTestUser( true )->getUser(); - $this->otherUser = $this->getTestUser( true )->getUser(); + $this->meUser = $this->getMutableTestUser()->getUser(); + $this->otherUser = $this->getMutableTestUser()->getUser(); } else { $this->meUser = self::$users[ 'sysop' ]->getUser(); $this->otherUser = self::$users[ 'uploader' ]->getUser();