Skip to content

Commit b8bd80b

Browse files
committed
Update tests
1 parent a28107a commit b8bd80b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/DebugBar/Tests/JavascriptRendererTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ public function testGetAssets()
6464
list($css, $js) = $this->r->getAssets();
6565
$this->assertContains('/foo/debugbar.css', $css);
6666
$this->assertContains('/foo/widgets.js', $js);
67-
$this->assertContains('/foo/vendor/jquery-1.8.3.min.js', $js);
67+
$this->assertContains('/foo/vendor/jquery/jquery.min.js', $js);
6868

6969
$this->r->setIncludeVendors(false);
7070
$js = $this->r->getAssets('js');
7171
$this->assertContains('/foo/debugbar.js', $js);
72-
$this->assertNotContains('/foo/vendor/jquery-1.8.3.min.js', $js);
72+
$this->assertNotContains('/foo/vendor/jquery/jquery.min.js', $js);
7373
}
7474

7575
public function testRenderHead()

0 commit comments

Comments
 (0)