summaryrefslogtreecommitdiff
path: root/test/unit/command_line_test.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-06-21 15:59:27 -0700
committerelijah <elijah@riseup.net>2016-06-21 15:59:27 -0700
commitd4ee04322ce642c602269738e45f63b800d78cf7 (patch)
treea49bba9f5a34a3d50b0bbe8b325e0172b4a6dd33 /test/unit/command_line_test.rb
parent7258edade9422fdfba1311be779d2ba40d2d042c (diff)
fix ruby deprecation warnings
Diffstat (limited to 'test/unit/command_line_test.rb')
-rw-r--r--test/unit/command_line_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/command_line_test.rb b/test/unit/command_line_test.rb
index 0b57ed0..ea0d1cc 100644
--- a/test/unit/command_line_test.rb
+++ b/test/unit/command_line_test.rb
@@ -21,7 +21,7 @@ class CommandLineTest < Minitest::Test
cleanup_files('nodes/banana.json', 'files/nodes/banana')
output = leap_bin("node add banana tags:production "+
"services:openvpn ip_address:1.1.1.1 openvpn.gateway_address:2.2.2.2")
- assert_match /created nodes\/banana\.json/, output
+ assert_match(/created nodes\/banana\.json/, output)
end
end