File tree Expand file tree Collapse file tree
exercises/practice/dot-dsl Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff 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
88type 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 },
You can’t perform that action at this time.
0 commit comments