diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-20 11:25:32 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-20 11:25:32 +0000 |
commit | 3b1a261989e87d613fd7963ee73dd83fe5c32aa0 (patch) | |
tree | 8a10c4149f999d7c5b854406e5a1a342546fc8e2 /t/test-parser.rb | |
parent | 79ee3fb4f0868cbd325d1191c3f1530392f15e03 (diff) |
Added xtra numbers to macro test.
Diffstat (limited to 't/test-parser.rb')
-rwxr-xr-x | t/test-parser.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-parser.rb b/t/test-parser.rb index cb9a9cb..a3b7b43 100755 --- a/t/test-parser.rb +++ b/t/test-parser.rb @@ -318,7 +318,7 @@ class TestParser < Test::Unit::TestCase # # Define a new macro, and ensure it is now present # - parser.parse_line( "FRONTLINESTAGING2 is 89.16.186.138 and 89.16.186.139 and 89.16.186.148." ) + parser.parse_line( "FRONTLINESTAGING29 is 89.16.186.138 and 89.16.186.139 and 89.16.186.148." ) macros = parser.macros assert( macros.size() == 1 ) @@ -327,7 +327,7 @@ class TestParser < Test::Unit::TestCase # Test that we got a suitable value when lookup up the contents # of that newly defined macro. # - values = parser.get_macro_targets( "FRONTLINESTAGING2" ) + values = parser.get_macro_targets( "FRONTLINESTAGING29" ) assert(values.class.to_s == "Array" ) |