File tree 2 files changed +7
-3
lines changed
tests/Integration/CachedBuilder
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.10.1] - 2020-08-02
8
+ ### Fixed
9
+ - typos in test class.
10
+
7
11
## [ 0.10.0] - 2020-08-02
8
12
### Removed
9
13
- PREDIS dependency. Going forward testing will be done against PHPREDIS, as
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ protected function getEnvironmentSetUp($app)
15
15
16
16
$ app ['config ' ]->set ('database.default ' , 'pgsql ' );
17
17
$ 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 " )) ;
21
21
}
22
22
23
23
public function setUp () : void
You can’t perform that action at this time.
0 commit comments