Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #253 from wmde/silly-typos
Browse files Browse the repository at this point in the history
Fix typos in SnapshotTransactionDataConverter tests
  • Loading branch information
Christoph Fischer committed May 18, 2016
2 parents 305492d + f5bc49c commit 317fa66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/SnapshotTransactionDataConverterTest.php
Expand Up @@ -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();
Expand Down

0 comments on commit 317fa66

Please sign in to comment.