Skip to content

Commit

Permalink
Merge pull request #257 from changeweb/funding-config
Browse files Browse the repository at this point in the history
Fix Librarian Test fail
  • Loading branch information
changeweb authored Jul 19, 2020
2 parents a5ccade + ff217cf commit 418c81f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .phpunit.result.cache

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: php
php:
- 7.4
- 7.3
- 7.2
before_script:
- cp .env.example .env
- composer install
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ See the news [here](https://laravel-news.com/unified-transform-open-source-schoo

## Server Requirements

- PHP >= 7.2.5
- PHP >= 7.3
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/LibrarianTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ public function can_see_list_of_librarians(){

$response->assertStatus(200)
->assertViewHas('users')
->assertSeeText(e($librarian1->name))
->assertSeeText(e($librarian2->name));
->assertSeeText(e($librarian1->student_code))
->assertSeeText(e($librarian2->student_code));
}

/**
Expand Down

0 comments on commit 418c81f

Please sign in to comment.