Changeset 12610

Show
Ignore:
Timestamp:
02/21/08 22:30:12 (3 months ago)
Author:
alex
Message:

update doh.registerTestNs logic to correctly filter for privates. Fixes #5625. !strict

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util/trunk/doh/runner.js

    r12490 r12610  
    329329        //              registerTest() or registerTests(). 
    330330        for(var x in ns){ 
    331                 if(     (x.charAt(0) == "_") && 
     331                if(     (x.charAt(0) != "_") && 
    332332                        (typeof ns[x] == "function") ){ 
    333333                        this.registerTest(group, ns[x]);