| Index: tests/dom/document_test.dart
 | 
| diff --git a/client/tests/client/dom/DocumentTest.dart b/tests/dom/document_test.dart
 | 
| similarity index 78%
 | 
| rename from client/tests/client/dom/DocumentTest.dart
 | 
| rename to tests/dom/document_test.dart
 | 
| index a06ff2ec3c94b8b06506bb8c4952c19277a5ff08..caf5bac13c9acdb8f4695cfa4ff4ef292b730f77 100644
 | 
| --- a/client/tests/client/dom/DocumentTest.dart
 | 
| +++ b/tests/dom/document_test.dart
 | 
| @@ -1,6 +1,6 @@
 | 
|  #library('DocumentTest');
 | 
| -#import('../../../../lib/unittest/unittest.dart');
 | 
| -#import('../../../../lib/unittest/dom_config.dart');
 | 
| +#import('../../lib/unittest/unittest.dart');
 | 
| +#import('../../lib/unittest/dom_config.dart');
 | 
|  #import('dart:dom');
 | 
|  
 | 
|  main() {
 | 
| @@ -17,6 +17,6 @@ main() {
 | 
|    test('DocumentURL', () {
 | 
|      // URL is something like ..._client_dom_DocumentTest.dartfrogium.html
 | 
|      Expect.isTrue(document.URL.endsWith('.html'));
 | 
| -    Expect.isTrue(document.URL.indexOf('DocumentTest') > 0);
 | 
| +    Expect.isTrue(document.URL.indexOf('document_test') > 0);
 | 
|    });
 | 
|  }
 | 
| 
 |