jdk/test/java/nio/file/Files/PassThroughFileSystem.java
changeset 17696 23a863fbb6c3
parent 9050 26c2c1de1631
--- a/jdk/test/java/nio/file/Files/PassThroughFileSystem.java	Fri May 17 10:36:04 2013 -0700
+++ b/jdk/test/java/nio/file/Files/PassThroughFileSystem.java	Thu May 09 14:44:56 2013 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -304,7 +304,7 @@
         public DirectoryStream<Path> newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
             throws IOException
         {
-            return wrap(Files.newDirectoryStream(dir, filter));
+            return wrap(Files.newDirectoryStream(unwrap(dir), filter));
         }
 
         @Override