We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db8c4e4 + 22aae2a commit 54ee93cCopy full SHA for 54ee93c
sbe-tool/src/test/java/uk/co/real_logic/sbe/generation/rust/RustFlatFileOutputManagerTest.java
@@ -1,5 +1,6 @@
1
package uk.co.real_logic.sbe.generation.rust;
2
3
+import org.junit.Assume;
4
import org.junit.Ignore;
5
import org.junit.Rule;
6
import org.junit.Test;
@@ -67,7 +68,7 @@ public void nullPackageParamThrowsNpe()
67
68
public void shouldThrowExceptionIfTargetDirNotWritable() throws IOException, InterruptedException
69
{
70
final File tempDir = folderRule.newFolder();
- assertTrue(tempDir.setReadOnly());
71
+ Assume.assumeTrue(tempDir.setReadOnly());
72
final String tempDirName = tempDir.getAbsolutePath();
73
74
try
0 commit comments