Skip to content

Commit bdd6d58

Browse files
committed
[dot-dsl] Make test case description unique; link to the type-conversion concept
1 parent f0eb3e8 commit bdd6d58

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

config.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1906,7 +1906,9 @@
19061906
"slug": "dot-dsl",
19071907
"name": "DOT DSL",
19081908
"uuid": "82c49ab1-270c-425a-a461-377853a13e3b",
1909-
"practices": [],
1909+
"practices": [
1910+
"type-conversion"
1911+
],
19101912
"prerequisites": [],
19111913
"difficulty": 5
19121914
},

exercises/practice/dot-dsl/cases_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package dotdsl
33
// This is an auto-generated file. Do not change it manually. Run the generator to update the file.
44
// See https://github.com/exercism/go#synchronizing-tests-and-instructions
55
// Source: exercism/problem-specifications
6-
// Commit: 3908a66 add canonical-data for dot-dsl (#2646)
6+
// Commit: d6451b0 [dot-dsl] Make test case descriptions unique
77

88
type testCase struct {
99
description string
@@ -99,12 +99,12 @@ var testCases = []testCase{
9999
expectedErr: "invalid edge",
100100
},
101101
{
102-
description: "malformed multiple edges",
102+
description: "multiple edges missing a node",
103103
input: "graph {\n a -- b --;\n}",
104104
expectedErr: "invalid edge",
105105
},
106106
{
107-
description: "malformed multiple edges",
107+
description: "multiple edges missing a connector",
108108
input: "graph {\n a -- b c;\n}",
109109
expectedErr: "invalid edge",
110110
},

0 commit comments

Comments
 (0)