From 24a4b3bca385af1e8b04c2d0c6a512ced1492a4e Mon Sep 17 00:00:00 2001 From: Adam Malone Date: Sat, 4 Apr 2020 12:49:27 +1100 Subject: [PATCH] Removes unused variable from missing version test. --- tests/AcquiaCliApplicationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AcquiaCliApplicationTest.php b/tests/AcquiaCliApplicationTest.php index ef5de13..833faa4 100644 --- a/tests/AcquiaCliApplicationTest.php +++ b/tests/AcquiaCliApplicationTest.php @@ -58,7 +58,7 @@ public function testMissingVersion() { $versionFile = sprintf('%s/VERSION', $this->root); $versionFileBak = sprintf('%s.bak', $versionFile); - $fileMoved = rename($versionFile, $versionFileBak); + rename($versionFile, $versionFileBak); try { $command = ['--version'];