updated to new version of the gatt library

This commit is contained in:
evilsocket 2018-04-17 18:25:40 +02:00
commit 8a36ca3c47
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
3 changed files with 11 additions and 4 deletions

View file

@ -130,6 +130,10 @@ func TestGlob(t *testing.T) {
glob(false, "{*.google.*,yandex.*}", "www.yandex.com", '.'),
glob(false, "{*.google.*,yandex.*}", "google.com", '.'),
glob(true, "*//{,*.}example.com", "https://www.example.com"),
glob(true, "*//{,*.}example.com", "http://example.com"),
glob(false, "*//{,*.}example.com", "http://example.com.net"),
glob(true, pattern_all, fixture_all_match),
glob(false, pattern_all, fixture_all_mismatch),