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.
1 parent 61e4aec commit 22de6caCopy full SHA for 22de6ca
src/Pathy/Gen.purs
@@ -80,8 +80,8 @@ genAbsAnyPathVariant = Gen.oneOf $ (inj proxyAbsDir <$> genAbsDirPath) :| [ inj
80
81
genAnyAnyPathVariant :: forall m. MonadGen m => MonadRec m => m AnyAnyPathVariant
82
genAnyAnyPathVariant = Gen.oneOf $
83
- ( inj proxyRelDir <$> genRelDirPath ) :|
84
- [ inj proxyAbsDir <$> genAbsDirPath
85
- , inj proxyRelFile <$> genRelFilePath
86
- , inj proxyAbsFile <$> genAbsFilePath
87
- ]
+ (inj proxyRelDir <$> genRelDirPath) :|
+ [ inj proxyAbsDir <$> genAbsDirPath
+ , inj proxyRelFile <$> genRelFilePath
+ , inj proxyAbsFile <$> genAbsFilePath
+ ]
test/Main.purs renamed to test/Test/Main.purs
0 commit comments