Skip to content

Commit e80ebdf

Browse files
committed
Add reference to issue we intend to fix
1 parent 16e395e commit e80ebdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test.integration/src/org/graalvm/python/embedding/test/integration/VirtualFileSystemIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ public void fsOperations(Context ctx, String pathPrefix) {
270270
eval(ctx, "import os; assert os.path.exists('{pathPrefix}emptydir')", pathPrefix);
271271
eval(ctx, "import os; assert os.path.exists('{pathPrefix}emptydir/')", pathPrefix);
272272
eval(ctx, "import os; assert os.path.exists('{pathPrefix}dir1/file2')", pathPrefix);
273-
Assume.assumeFalse("FileNotFoundException is not translated properly to isolate and then the Python code gets a generic I/O error", Boolean.getBoolean("polyglot.engine.SpawnIsolate"));
273+
Assume.assumeFalse("[GR-66484] FileNotFoundException is not translated properly to isolate and then the Python code gets a generic I/O error", Boolean.getBoolean("polyglot.engine.SpawnIsolate"));
274274
eval(ctx, "import os; assert not os.path.exists('{pathPrefix}doesnotexist')", pathPrefix);
275275
eval(ctx, "import os; assert not os.path.exists('{pathPrefix}doesnotexist/')", pathPrefix);
276276

0 commit comments

Comments
 (0)