Skip to content

Commit abb14de

Browse files
authored
Merge pull request #155 from frankban/satisfies-refernce
Only keep the refernce to the original satisfies code
2 parents 9a0c242 + 68d1d64 commit abb14de

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

‎.github/workflows/ci.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: Build and Test
77
strategy:
88
matrix:
9-
go: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19']
9+
go: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20']
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3

‎checker.go‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,6 @@ type satisfiesChecker struct {
436436
func (c *satisfiesChecker) Check(got interface{}, args []interface{}, note func(key string, value interface{})) (err error) {
437437
// Original code at
438438
// <https://github.com/juju/testing/blob/master/checkers/bool.go>.
439-
// Copyright 2011 Canonical Ltd.
440-
// Licensed under the LGPLv3, see LICENSE file for details.
441439
predicate := args[0]
442440
f := reflect.ValueOf(predicate)
443441
ftype := f.Type()

0 commit comments

Comments
 (0)