Skip to content

Commit 710caf3

Browse files
Sync tests for practice exercise dominoes (#2534)
1 parent 4cfe730 commit 710caf3

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

exercises/practice/dominoes/.meta/tests.toml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
# This is an auto-generated file. Regular comments will be removed when this
2-
# file is regenerated. Regenerating will not touch any manually added keys,
3-
# so comments can be added in a "comment" key.
1+
# This is an auto-generated file.
2+
#
3+
# Regenerating this file via `configlet sync` will:
4+
# - Recreate every `description` key/value pair
5+
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
6+
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
7+
# - Preserve any other key/value pair
8+
#
9+
# As user-added comments (using the # character) will be removed when this file
10+
# is regenerated, comments can be added via a `comment` key.
411

512
[31a673f2-5e54-49fe-bd79-1c1dae476c9c]
613
description = "empty input = empty output"
@@ -37,3 +44,6 @@ description = "separate loops"
3744

3845
[cd061538-6046-45a7-ace9-6708fe8f6504]
3946
description = "nine elements"
47+
48+
[44704c7c-3adb-4d98-bd30-f45527cf8b49]
49+
description = "separate three-domino loops"

exercises/practice/dominoes/.meta/version

Lines changed: 0 additions & 2 deletions
This file was deleted.

exercises/practice/dominoes/src/test/java/DominoesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public void nineElementsTest() throws ChainNotFoundException {
170170

171171
@Ignore("Remove to run test")
172172
@Test
173-
public void seperateThreeDominoLoopsTest() {
173+
public void separateThreeDominoLoopsTest() {
174174
Dominoes dominoes = new Dominoes();
175175

176176
Domino[] dominoesArray = {new Domino(1, 2), new Domino(2, 3), new Domino(3, 1),

0 commit comments

Comments
 (0)