diff options
Diffstat (limited to 't/test-custodian-alertfactory.rb')
-rwxr-xr-x | t/test-custodian-alertfactory.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/t/test-custodian-alertfactory.rb b/t/test-custodian-alertfactory.rb index 3138fa6..cceec2b 100755 --- a/t/test-custodian-alertfactory.rb +++ b/t/test-custodian-alertfactory.rb @@ -75,8 +75,8 @@ class TestAlertFactory < Test::Unit::TestCase # Ensure that the object implements the raise() + clear() # methods we mandate. # - assert(obj.respond_to? 'raise') - assert(obj.respond_to? 'clear') + assert(obj.respond_to?('raise')) + assert(obj.respond_to?('clear')) end @@ -100,4 +100,3 @@ class TestAlertFactory < Test::Unit::TestCase end end - |