Skip to content

Commit 8975882

Browse files
committed
Fixes issue #18
1 parent d6227f9 commit 8975882

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

TestStack.BDDfy/Processors/Reporters/Html/HtmlReportBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ private void HtmlHead()
4242
AddLine("<meta charset='utf-8'/>");
4343
AddLine(string.Format("<link href='BDDfy.css' rel='stylesheet'/>"));
4444
if(_viewModel.UseCustomStylesheet)
45-
AddLine(string.Format("<link href='bddifyCustom.css' rel='stylesheet'/>"));
45+
AddLine(string.Format("<link href='BDDfyCustom.css' rel='stylesheet'/>"));
4646

4747
AddLine("<script type='text/javascript' src='jquery-1.7.1.min.js'></script>");
4848
AddLine(string.Format("<script type='text/javascript' src='BDDfy.js'></script>"));
4949
if (_viewModel.UseCustomJavascript)
50-
AddLine(string.Format("<link href='bddifyCustom.js' rel='stylesheet'/>"));
50+
AddLine(string.Format("<link href='BDDfyCustom.js' rel='stylesheet'/>"));
5151

5252
AddLine(string.Format("<title>BDDfy Test Result {0}</title>", DateTime.Now.ToShortDateString()));
5353
}
@@ -141,7 +141,7 @@ private void ResultDetails()
141141

142142
private void Footer()
143143
{
144-
AddLine("<div class='footer'>Powered by <a href='http://hg.mehdi-khalili.com/BDDfy/wiki/Home'>BDDfy</a> framework</div>");
144+
AddLine("<div class='footer'>Powered by <a href='http://teststack.github.io/TestStack.BDDfy/'>BDDfy</a> framework</div>");
145145
}
146146

147147
private void AddStory(Story story)

0 commit comments

Comments
 (0)