Fix a typo in path_set_test.

I'd have sworn I fixed this in the orignal CL.

R=rnystrom@google.com
TBR

Review URL: https://codereview.chromium.org//67973003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/watcher@30173 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/pkgs/watcher/test/path_set_test.dart b/pkgs/watcher/test/path_set_test.dart
index dc1f729..f433ad3 100644
--- a/pkgs/watcher/test/path_set_test.dart
+++ b/pkgs/watcher/test/path_set_test.dart
@@ -218,7 +218,7 @@
       set.add("root/path/to/two");
       set.remove("root/path/to/two");
 
-      expect(set.toSet(), unorderedEquals([p.normalizze("root/path/to/one")]));
+      expect(set.toSet(), unorderedEquals([p.normalize("root/path/to/one")]));
     });
   });