File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
tests/Integration/CachedBuilder Expand file tree Collapse file tree 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.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments