Skip to content

Commit

Permalink
fix rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
alpaca-tc committed Jul 8, 2024
1 parent 770bae8 commit 1603d20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/diver_down/web/definition_to_dot_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def build_definition(title: 'title', sources: [])
strict digraph "title" {
"a.rb" [label="a.rb" id="graph_1"]
"b.rb" [label="b.rb" id="graph_2"]
"a.rb" -> "b.rb" [id="graph_3"]
"a.rb" -> "b.rb" [id="graph_3" minlen="3"]
}
DOT

Expand Down Expand Up @@ -242,9 +242,9 @@ def build_definition(title: 'title', sources: [])
"b.rb" [label="b.rb" id="graph_5"]
"c.rb" [label="c.rb" id="graph_6"]
}
"a.rb" -> "b.rb" [id="graph_7"]
"a.rb" -> "c.rb" [id="graph_8"]
"a.rb" -> "d.rb" [id="graph_9"]
"a.rb" -> "b.rb" [id="graph_7" minlen="3"]
"a.rb" -> "c.rb" [id="graph_8" minlen="3"]
"a.rb" -> "d.rb" [id="graph_9" minlen="3"]
}
DOT
end
Expand Down

0 comments on commit 1603d20

Please sign in to comment.