fixed mispelling: TimerTicks is now TimeTicks.

This commit is contained in:
blackhedd 2006-12-21 15:09:29 +00:00
parent 0d9206d602
commit f6c87c02fc
2 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ class TestSnmp < Test::Unit::TestCase
assert_equal( "A\001d", c32.to_ber )
g32 = Net::SNMP::Gauge32.new(100)
assert_equal( "B\001d", g32.to_ber )
t32 = Net::SNMP::TimerTicks32.new(100)
t32 = Net::SNMP::TimeTicks32.new(100)
assert_equal( "C\001d", t32.to_ber )
end