Browse Source

Fixed variable isa_ok test was being called on

Ken Swanson 14 years ago
parent
commit
fbfcfcd122
1 changed files with 1 additions and 1 deletions
  1. 1 1
      t/01-driver.t

+ 1 - 1
t/01-driver.t

@@ -189,7 +189,7 @@ EXECUTE: {
         isa_ok($elem, 'ARRAY', 'What we got back is an ARRAY ref');
         isa_ok($elem, 'ARRAY', 'What we got back is an ARRAY ref');
         ok(scalar(@$elem), 'There are elements in our array ref');
         ok(scalar(@$elem), 'There are elements in our array ref');
         foreach my $element (@$elem) {
         foreach my $element (@$elem) {
-            isa_ok($elem, 'Selenium::Remote::WebElement', 'Element was converted to a WebElement object');
+            isa_ok($element, 'Selenium::Remote::WebElement', 'Element was converted to a WebElement object');
         }
         }
         $script = q{
         $script = q{
           var arg1 = arguments[0];
           var arg1 = arguments[0];