Skip to content

Commit 2df6839

Browse files
author
Andrey Helldar
committed
Updated tests
1 parent 1d186c1 commit 2df6839

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/Auth/BodyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
class BodyTest extends TestCase
2626
{
27-
public const TOKEN_HASH = '670e06c2ca4d9c73629285eb2201c148c81d587877d1f5836a2f64f45d0f5556';
27+
public const TOKEN_HASH = '714bee21f51693eb5effb1895560f2a50dac0e795d5859a06b94bbdbe26faa1d';
2828

2929
public function testBasic()
3030
{

tests/Fixtures/ModelResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected function sum(): float
4545
return TestCase::SUM;
4646
}
4747

48-
protected function currency(): int
48+
protected function currency(): string
4949
{
5050
return TestCase::CURRENCY;
5151
}

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ abstract class TestCase extends BaseTestCase
4040

4141
public const SUM_RESULT = 12345;
4242

43-
public const CURRENCY = 123;
43+
public const CURRENCY = 'RUB';
4444

45-
public const CURRENCY_RESULT = '123';
45+
public const CURRENCY_RESULT = '643';
4646

4747
public const CREATED_AT = '2021-07-29 18:51:03';
4848

0 commit comments

Comments
 (0)