Parts must start with 'part of'

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/logging@13961 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/lib/logging.dart b/lib/logging.dart
index 8dc5ac1..b24ee5c 100644
--- a/lib/logging.dart
+++ b/lib/logging.dart
@@ -7,7 +7,7 @@
  * abstractions similar to those used in other languages, such as the Closure JS
  * Logger and java.util.logging.Logger.
  */
-#library('logging');
+library logging;
 
 /**
  * Whether to allow fine-grain logging and configuration of loggers in a
diff --git a/test/logging_test.dart b/test/logging_test.dart
index e975dbd..8d274e1 100644
--- a/test/logging_test.dart
+++ b/test/logging_test.dart
@@ -3,11 +3,11 @@
 // BSD-style license that can be found in the LICENSE file.
 
 
-#library('logging_test');
+library logging_test;
 
 // TODO(rnystrom): Use "package:" import when test.dart supports it (#4968).
-#import('../lib/logging.dart');
-#import('../../../pkg/unittest/unittest.dart');
+import '../lib/logging.dart';
+import '../../../pkg/unittest/unittest.dart';
 
 main() {
   test('level comparison is a valid comparator', () {