Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8998

Show
Ignore:
Timestamp:
03/09/08 07:14:28 (6 months ago)
Author:
tobie
Message:

prototype: Stop form observers in unit tests. Closes #10938.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/trunk/CHANGELOG

    r8997 r8998  
     1* Stop form observers in unit tests. Closes #10938. [kangax] 
     2 
    13* Performance improvements for Enumerables. Closes #11264. [Ben, Samuel Lebeau] 
    24 
  • spinoffs/prototype/trunk/test/unit/form.html

    r8722 r8998  
    192192          wait(550, function() { 
    193193            assertEqual(1, timedCounter); 
     194            observer.stop(); 
    194195          }); 
    195196        }); 
     
    220221          wait(550, function() { 
    221222            assertEqual(1, timedCounter); 
     223            observer.stop(); 
    222224          }); 
    223225        }); 
     
    245247          wait(550, function() { 
    246248            assertEqual(1, timedCounter); 
     249            observer.stop(); 
    247250          }); 
    248251        });