Changeset 8474

Show
Ignore:
Timestamp:
05/08/07 09:57:45 (19 months ago)
Author:
sjmiles
Message:

Fix test that was using the console instead of the test object. Refs #2641.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/tests/_base/connect.js

    r8402 r8474  
    171171                        gFoo(); 
    172172                        dojo.disconnect(link); 
    173                         console.log('argsTest2a: ', (ok ? "ok" : "not ok")); 
     173                        t.is(true, ok); 
    174174                        // 2 arg shorthand for globals, alternate scoping  
    175175                        link = dojo.connect("gFoo", gOk); 
    176176                        gFoo(); 
    177177                        dojo.disconnect(link); 
    178                         console.log('argsTest2b: ', (ok ? "ok" : "not ok")); 
     178                        t.is(true, ok); 
    179179                }, 
    180180                function scopeTest1(t){