Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Eichhorn committed Oct 24, 2023
1 parent b871ba2 commit 61253e9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/Algorithm/Graph/DependencyResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function testResolveCircular() : void
public function testResolve() : void
{
self::assertEquals(
[0, 1, 2, 3],
[2, 3, 1, 0],
DependencyResolver::resolve([0 => [1, 2], 1 => [2, 3], 2 => [], 3 => []])
);
}
Expand Down
16 changes: 7 additions & 9 deletions tests/Utils/Parser/Markdown/data/mermaidjs.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
```mermaid
sequenceDiagram
<div class="mermaid">sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
Alice-&gt;&gt;John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
John-&gt;&gt;John: Fight against hypochondria
end
Note right of John: Rational thoughts<br/>prevail...
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
Note right of John: Rational thoughts&lt;br/&gt;prevail...
John--&gt;&gt;Alice: Great!
John-&gt;&gt;Bob: How about you?
Bob--&gt;&gt;John: Jolly good!</div>

0 comments on commit 61253e9

Please sign in to comment.