From f5bc49c62af4fa06463d173d6bd776f15d042b76 Mon Sep 17 00:00:00 2001 From: Leszek Manicki Date: Wed, 18 May 2016 11:03:56 +0200 Subject: [PATCH] Fix typos in SnapshotTransactionDataConverter tests --- tests/unit/SnapshotTransactionDataConverterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/SnapshotTransactionDataConverterTest.php b/tests/unit/SnapshotTransactionDataConverterTest.php index f41121c..6321ab0 100644 --- a/tests/unit/SnapshotTransactionDataConverterTest.php +++ b/tests/unit/SnapshotTransactionDataConverterTest.php @@ -99,14 +99,14 @@ public function testGivenTransactionDataInUnknownFormat_needsConversionReturnsFa $this->assertFalse($converter->needsConversion(['10' => [['foo' => 'bar']]])); } - public function testFivenPhabricatorJsonTransactions_convertReturnsConvertedData() + public function testGivenPhabricatorJsonTransactions_convertReturnsConvertedData() { $expectedConvertedData = $this->getConvertedTransactions(); $converter = new SnapshotTransactionDataConverter(); $this->assertSame($expectedConvertedData, $converter->convert($this->getPhabricatorTransactions())); } - public function testGivenConvertedtransactions_convertReturnsUnchangedData() + public function testGivenConvertedTransactions_convertReturnsUnchangedData() { $expectedConvertedData = $this->getConvertedTransactions(); $converter = new SnapshotTransactionDataConverter();