We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a28107a commit b8bd80bCopy full SHA for b8bd80b
tests/DebugBar/Tests/JavascriptRendererTest.php
@@ -64,12 +64,12 @@ public function testGetAssets()
64
list($css, $js) = $this->r->getAssets();
65
$this->assertContains('/foo/debugbar.css', $css);
66
$this->assertContains('/foo/widgets.js', $js);
67
- $this->assertContains('/foo/vendor/jquery-1.8.3.min.js', $js);
+ $this->assertContains('/foo/vendor/jquery/jquery.min.js', $js);
68
69
$this->r->setIncludeVendors(false);
70
$js = $this->r->getAssets('js');
71
$this->assertContains('/foo/debugbar.js', $js);
72
- $this->assertNotContains('/foo/vendor/jquery-1.8.3.min.js', $js);
+ $this->assertNotContains('/foo/vendor/jquery/jquery.min.js', $js);
73
}
74
75
public function testRenderHead()
0 commit comments