Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
ghc-geode
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Projet GEODE
ghc-geode
Commits
0f61b7e0
Commit
0f61b7e0
authored
2 years ago
by
Alice Brenon
Browse files
Options
Downloads
Patches
Plain Diff
Fix redundant imports and versioning error
parent
952e0c5a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
lib/GEODE/Metadata.hs
+1
-1
1 addition, 1 deletion
lib/GEODE/Metadata.hs
test/GEODE/Metadata/TestEntry.hs
+0
-3
0 additions, 3 deletions
test/GEODE/Metadata/TestEntry.hs
test/Main
+0
-0
0 additions, 0 deletions
test/Main
test/Main.hs
+0
-1
0 additions, 1 deletion
test/Main.hs
with
2 additions
and
5 deletions
.gitignore
+
1
−
0
View file @
0f61b7e0
*.o
*.hi
Main
This diff is collapsed.
Click to expand it.
lib/GEODE/Metadata.hs
+
1
−
1
View file @
0f61b7e0
...
...
@@ -24,7 +24,7 @@ import GEODE.Metadata.SplitContext as SplitContext hiding (page, rank)
import
GEODE.Metadata.TSV
as
TSV
import
GEODE.Metadata.TSV.Header
as
TSV_Header
(
Concat
(
..
),
DefaultFields
(
..
),
Glue
(
..
),
HasDefaultHeader
(
..
)
,
Has
DefaultHeader
(
..
)
)
,
With
DefaultHeader
(
..
)
)
import
GEODE.Metadata.Types
as
Types
list
::
[
Text
]
->
String
...
...
This diff is collapsed.
Click to expand it.
test/GEODE/Metadata/TestEntry.hs
+
0
−
3
View file @
0f61b7e0
{-# LANGUAGE OverloadedStrings #-}
module
GEODE.Metadata.TestEntry
(
testEntry
)
where
import
Control.Monad.State
(
evalState
)
import
Data.ByteString.Char8
as
BS
(
pack
)
import
Data.Csv
(
ToNamedRecord
(
..
))
import
Data.Foldable
(
toList
)
import
Data.HashMap.Strict
((
!?
))
import
Data.Map
as
Map
(
empty
)
import
Data.Text
(
dropEnd
)
import
GEODE.Metadata
(
evalSplit
,
newEntry
,
normalize
)
import
GEODE.Metadata.Entry
(
Entry
(
..
))
...
...
This diff is collapsed.
Click to expand it.
test/Main
deleted
100755 → 0
+
0
−
0
View file @
952e0c5a
File deleted
This diff is collapsed.
Click to expand it.
test/Main.hs
+
0
−
1
View file @
0f61b7e0
...
...
@@ -3,7 +3,6 @@ module Main (main) where
import
Test.HUnit
(
Test
(
..
),
runTestTTAndExit
)
import
GEODE.Metadata.TestPrimaryKey
(
testPrimaryKey
)
import
GEODE.Metadata.TestEntry
(
testEntry
)
import
System.Exit
(
exitFailure
,
exitSuccess
)
testMetadata
::
Test
testMetadata
=
TestLabel
"Metadata suite"
$
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment