Add newlines to files [skip ci]

This commit is contained in:
James Cole
2018-03-04 15:14:29 +01:00
parent 7d66c90beb
commit 39c8b79ebb
56 changed files with 56 additions and 56 deletions

View File

@@ -77,4 +77,4 @@ class AboutControllerTest extends TestCase
} }
} }

View File

@@ -451,4 +451,4 @@ class AccountControllerTest extends TestCase
} }
} }

View File

@@ -242,4 +242,4 @@ class BillControllerTest extends TestCase
$response->assertSee($bill->name); $response->assertSee($bill->name);
} }
} }

View File

@@ -2443,4 +2443,4 @@ class TransactionControllerTest extends TestCase
$response = $this->put('/api/v1/transactions/' . $transaction->id, $data); $response = $this->put('/api/v1/transactions/' . $transaction->id, $data);
$response->assertStatus(200); $response->assertStatus(200);
} }
} }

View File

@@ -198,4 +198,4 @@ class UserControllerTest extends TestCase
} }
} }

View File

@@ -159,4 +159,4 @@ class LinkControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
} }
} }

View File

@@ -393,4 +393,4 @@ class AccountFactoryTest extends TestCase
$this->assertEquals($account->id, $existing->id); $this->assertEquals($account->id, $existing->id);
} }
} }

View File

@@ -165,4 +165,4 @@ class BillFactoryTest extends TestCase
$this->assertNull($factory->find(null, null)); $this->assertNull($factory->find(null, null));
} }
} }

View File

@@ -94,4 +94,4 @@ class BudgetFactoryTest extends TestCase
$this->assertNull($factory->find(null, 'I dont exist.' . rand(1, 000))); $this->assertNull($factory->find(null, 'I dont exist.' . rand(1, 000)));
} }
} }

View File

@@ -100,4 +100,4 @@ class CategoryFactoryTest extends TestCase
$this->assertNull($factory->findOrCreate(null, null)); $this->assertNull($factory->findOrCreate(null, null));
} }
} }

View File

@@ -132,4 +132,4 @@ class PiggyBankEventFactoryTest extends TestCase
} }
} }

View File

@@ -93,4 +93,4 @@ class PiggyBankFactoryTest extends TestCase
$factory->setUser($this->user()); $factory->setUser($this->user());
$this->assertNull($factory->find(null, 'I dont exist.' . rand(1, 000))); $this->assertNull($factory->find(null, 'I dont exist.' . rand(1, 000)));
} }
} }

View File

@@ -60,4 +60,4 @@ class TagFactoryTest extends TestCase
$this->assertEquals($tag, $result->tag); $this->assertEquals($tag, $result->tag);
} }
} }

View File

@@ -79,4 +79,4 @@ class TransactionCurrencyFactoryTest extends TestCase
$this->assertNull($factory->find(null, null)); $this->assertNull($factory->find(null, null));
} }
} }

View File

@@ -820,4 +820,4 @@ class TransactionFactoryTest extends TestCase
$this->assertNull($first->foreign_currency_id); $this->assertNull($first->foreign_currency_id);
} }
} }

View File

@@ -174,4 +174,4 @@ class TransactionJournalFactoryTest extends TestCase
} }
} }

View File

@@ -102,4 +102,4 @@ class TransactionJournalMetaFactoryTest extends TestCase
} }
} }

View File

@@ -685,4 +685,4 @@ class FileConfiguratorTest extends TestCase
return $job; return $job;
} }
} }

View File

@@ -60,4 +60,4 @@ class INGDebitCreditTest extends TestCase
$result = $converter->convert('Bij'); $result = $converter->convert('Bij');
$this->assertEquals(1, $result); $this->assertEquals(1, $result);
} }
} }

View File

@@ -60,4 +60,4 @@ class RabobankDebitCreditTest extends TestCase
$result = $converter->convert('C'); $result = $converter->convert('C');
$this->assertEquals(1, $result); $this->assertEquals(1, $result);
} }
} }

View File

@@ -343,4 +343,4 @@ class CsvProcessorTest extends TestCase
return $job; return $job;
} }
} }

View File

@@ -64,4 +64,4 @@ class AssetAccountIbansTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -65,4 +65,4 @@ class BillsTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -63,4 +63,4 @@ class BudgetsTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -63,4 +63,4 @@ class CategoriesTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -66,4 +66,4 @@ class OpposingAccountIbansTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -62,4 +62,4 @@ class TagsTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -65,4 +65,4 @@ class TransactionCurrenciesTest extends TestCase
$this->assertEquals($result, $mapping); $this->assertEquals($result, $mapping);
} }
} }

View File

@@ -46,4 +46,4 @@ class TagsCommaTest extends TestCase
} }
} }

View File

@@ -45,4 +45,4 @@ class TagsSpaceTest extends TestCase
$this->assertEquals($output, $result); $this->assertEquals($output, $result);
} }
} }

View File

@@ -126,4 +126,4 @@ class ImportAccountTest extends TestCase
$importAccount = new ImportAccount; $importAccount = new ImportAccount;
$importAccount->getAccount(); $importAccount->getAccount();
} }
} }

View File

@@ -113,4 +113,4 @@ class AuthenticateTest extends TestCase
} }
); );
} }
} }

View File

@@ -188,4 +188,4 @@ class AuthenticateTwoFactorTest extends TestCase
} }
); );
} }
} }

View File

@@ -1533,4 +1533,4 @@ class BinderTest extends TestCase
} }
} }

View File

@@ -91,4 +91,4 @@ class IsAdminTest extends TestCase
} }
); );
} }
} }

View File

@@ -79,4 +79,4 @@ class IsDemoUserTest extends TestCase
} }
); );
} }
} }

View File

@@ -83,4 +83,4 @@ class IsSandstormUserTest extends TestCase
} }
); );
} }
} }

View File

@@ -76,4 +76,4 @@ class RangeTest extends TestCase
} }
); );
} }
} }

View File

@@ -91,4 +91,4 @@ class RedirectIf2FAAuthenticatedTest extends TestCase
} }
); );
} }
} }

View File

@@ -66,4 +66,4 @@ class RedirectIfAuthenticatedTest extends TestCase
} }
); );
} }
} }

View File

@@ -177,4 +177,4 @@ class SandstormTest extends TestCase
} }
); );
} }
} }

View File

@@ -96,4 +96,4 @@ class AccountDestroyServiceTest extends TestCase
$this->assertDatabaseHas('transactions', ['id' => $transaction->id, 'account_id' => $move->id]); $this->assertDatabaseHas('transactions', ['id' => $transaction->id, 'account_id' => $move->id]);
} }
} }

View File

@@ -308,4 +308,4 @@ class AccountUpdateServiceTest extends TestCase
$this->assertEquals($data['notes'], $note->text); $this->assertEquals($data['notes'], $note->text);
} }
} }

View File

@@ -220,4 +220,4 @@ class JournalUpdateServiceTest extends TestCase
$this->assertEquals(2, $result->transactions()->count()); $this->assertEquals(2, $result->transactions()->count());
} }
} }

View File

@@ -219,4 +219,4 @@ class TransactionUpdateServiceTest extends TestCase
} }
} }

View File

@@ -421,4 +421,4 @@ class AccountTransformerTest extends TestCase
} }
} }

View File

@@ -61,4 +61,4 @@ class AttachmentTransformerTest extends TestCase
$this->assertEquals('hello.txt', $result['filename']); $this->assertEquals('hello.txt', $result['filename']);
} }
} }

View File

@@ -146,4 +146,4 @@ class BillTransformerTest extends TestCase
$this->assertEquals('2018-01-02', $result['paid_dates'][0]); $this->assertEquals('2018-01-02', $result['paid_dates'][0]);
} }
} }

View File

@@ -55,4 +55,4 @@ class BudgetTransformerTest extends TestCase
$this->assertEquals($budget->name, $result['name']); $this->assertEquals($budget->name, $result['name']);
$this->assertTrue($result['active']); $this->assertTrue($result['active']);
} }
} }

View File

@@ -54,4 +54,4 @@ class CategoryTransformerTest extends TestCase
$this->assertEquals($category->name, $result['name']); $this->assertEquals($category->name, $result['name']);
} }
} }

View File

@@ -57,4 +57,4 @@ class JournalMetaTransformerTest extends TestCase
$this->assertEquals($hash, $result['hash']); $this->assertEquals($hash, $result['hash']);
} }
} }

View File

@@ -141,4 +141,4 @@ class PiggyBankEventTransformerTest extends TestCase
$this->assertEquals(123.45, $result['amount']); $this->assertEquals(123.45, $result['amount']);
} }
} }

View File

@@ -205,4 +205,4 @@ class PiggyBankTransformerTest extends TestCase
$this->assertEquals($piggy->name, $result['name']); $this->assertEquals($piggy->name, $result['name']);
$this->assertEquals('I am a note.', $result['notes']); $this->assertEquals('I am a note.', $result['notes']);
} }
} }

View File

@@ -61,4 +61,4 @@ class TagTransformerTest extends TestCase
$this->assertEquals(6.6, $result['longitude']); $this->assertEquals(6.6, $result['longitude']);
} }
} }

View File

@@ -1399,4 +1399,4 @@ class TransactionTransformerTest extends TestCase
} }
} }

View File

@@ -64,4 +64,4 @@ class UserTransformerTest extends TestCase
$this->assertNull($result['role']); $this->assertNull($result['role']);
} }
} }