Skip to content

Commit 9f7eaa0

Browse files
committed
Fixed typos in test class.
1 parent 68338fa commit 9f7eaa0

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.10.1] - 2020-08-02
8+
### Fixed
9+
- typos in test class.
10+
711
## [0.10.0] - 2020-08-02
812
### Removed
913
- PREDIS dependency. Going forward testing will be done against PHPREDIS, as

tests/Integration/CachedBuilder/WhereJsonContainsTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ protected function getEnvironmentSetUp($app)
1515

1616
$app['config']->set('database.default', 'pgsql');
1717
$app['config']->set('database.connections.pgsql.host', env("PGSQL_HOST", "127.0.0.1"));
18-
$app['config']->set('database.connections.pgsql.database', env("PGSQL_DATABASE", "testing");
19-
$app['config']->set('database.connections.pgsql.username', env("PGSQL_USERNAME", "homestead");
20-
$app['config']->set('database.connections.pgsql.password', env("PGSQL_PASSWORD", "secret");
18+
$app['config']->set('database.connections.pgsql.database', env("PGSQL_DATABASE", "testing"));
19+
$app['config']->set('database.connections.pgsql.username', env("PGSQL_USERNAME", "homestead"));
20+
$app['config']->set('database.connections.pgsql.password', env("PGSQL_PASSWORD", "secret"));
2121
}
2222

2323
public function setUp() : void

0 commit comments

Comments
 (0)