Skip to content

Commit

Permalink
Fix file names
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Feb 15, 2024
1 parent 93fd455 commit 2f9ac0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/eliuds-eggs/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
],
"files": {
"solution": [
"pop-count.sml"
"eliuds-eggs.sml"
],
"test": [
"test.sml"
Expand All @@ -15,5 +15,5 @@
},
"blurb": "Help Eliud count the number of eggs in her chicken coop by counting the number of 1 bits in a binary representation.",
"source": "Christian Willner, Eric Willigers",
"source_url": "https://forum.exercism.org/t/new-exercise-suggestion-pop-count/7632/5"
"source_url": "https://forum.exercism.org/t/new-exercise-suggestion-eliuds-eggs/7632/5"
}
4 changes: 2 additions & 2 deletions exercises/practice/eliuds-eggs/test.sml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use "testlib.sml";
use "pop-count.sml";
use "eliuds-eggs.sml";

infixr |>
fun x |> f = f x

val testsuite =
describe "pop-count" [
describe "eliuds-eggs" [
test "0 eggs"
(fn _ => eggCount 0 |> Expect.equalTo 0),

Expand Down

0 comments on commit 2f9ac0c

Please sign in to comment.