summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2019-03-11 13:58:23 -0800
committerRyan Davis <ryand@zenspider.com>2019-03-11 13:58:23 -0800
commit45d899d7381179ed0eb32537203556c14f0c5dd9 (patch)
tree7bf8f25ff7edb5fdf689c90a84fa6cad274d7d7d /test
parentddd4417d74bea4349c0b4f480660bfd4fac4542c (diff)
downloadhoe-45d899d7381179ed0eb32537203556c14f0c5dd9.tar.gz
Fixed test data to avoid new deprecations on ruby 2.6. (mtasaka)
[git-p4: depot-paths = "//src/hoe/dev/": change = 11834]
Diffstat (limited to 'test')
-rw-r--r--test/test_hoe_debug.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_hoe_debug.rb b/test/test_hoe_debug.rb
index e8c7f8d..567a5a2 100644
--- a/test/test_hoe_debug.rb
+++ b/test/test_hoe_debug.rb
@@ -98,6 +98,6 @@ class TestHoeDebug < Minitest::Test
end
def with_config
- yield({ "exclude" => [] }, "~/.hoerc")
+ yield({ "exclude" => /do not match anything/ }, "~/.hoerc")
end
end