Skip to content

Commit 33e9a3a

Browse files
Update line endings
1 parent 1b8e74d commit 33e9a3a

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

src/React.AspNet/HtmlHelperExtensions.cs

+18-18
Original file line numberDiff line numberDiff line change
@@ -150,34 +150,34 @@ public static IHtmlString ReactInitJavaScript(this IHtmlHelper htmlHelper, bool
150150
{
151151
Environment.ReturnEngineToPool();
152152
}
153-
}
154-
155-
private static IHtmlString GetScriptTag(string script)
156-
{
153+
}
154+
155+
private static IHtmlString GetScriptTag(string script)
156+
{
157157
#if LEGACYASPNET
158158
var tag = new TagBuilder("script")
159159
{
160-
InnerHtml = script,
160+
InnerHtml = script,
161161
};
162-
163-
if (Environment.Configuration.ScriptNonceProvider != null)
164-
{
165-
string nonce = Environment.Configuration.ScriptNonceProvider();
166-
tag.Attributes.Add("nonce", nonce );
167-
}
168-
162+
163+
if (Environment.Configuration.ScriptNonceProvider != null)
164+
{
165+
string nonce = Environment.Configuration.ScriptNonceProvider();
166+
tag.Attributes.Add("nonce", nonce );
167+
}
168+
169169
return new HtmlString(tag.ToString());
170170
#else
171171
var tag = new TagBuilder("script");
172172
tag.InnerHtml.AppendHtml(script);
173-
174-
if (Environment.Configuration.ScriptNonceProvider != null)
173+
174+
if (Environment.Configuration.ScriptNonceProvider != null)
175175
{
176-
tag.Attributes.Add("nonce", Environment.Configuration.ScriptNonceProvider());
176+
tag.Attributes.Add("nonce", Environment.Configuration.ScriptNonceProvider());
177177
}
178-
179-
return tag;
180-
#endif
178+
179+
return tag;
180+
#endif
181181
}
182182
}
183183
}

src/React.Core/IReactEnvironment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public interface IReactEnvironment
109109
/// Returns the currently held JS engine to the pool. (no-op if engine pooling is disabled)
110110
/// </summary>
111111
void ReturnEngineToPool();
112-
112+
113113
/// <summary>
114114
/// Gets the site-wide configuration.
115115
/// </summary>

tests/React.Tests/Mvc/HtmlHelperExtensionsTests.cs

+25-25
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
* This source code is licensed under the BSD-style license found in the
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
8-
*/
9-
10-
using System;
11-
using System.Security.Cryptography;
8+
*/
9+
10+
using System;
11+
using System.Security.Cryptography;
1212
using Moq;
1313
using Xunit;
1414
using React.Web.Mvc;
@@ -59,31 +59,31 @@ public void ReactWithInitShouldReturnHtmlAndScript()
5959

6060
[Fact]
6161
public void ScriptNonceIsReturned()
62-
{
63-
string nonce;
64-
using (var random = new RNGCryptoServiceProvider())
65-
{
66-
byte[] nonceBytes = new byte[16];
67-
random.GetBytes(nonceBytes);
68-
nonce = Convert.ToBase64String(nonceBytes);
69-
}
62+
{
63+
string nonce;
64+
using (var random = new RNGCryptoServiceProvider())
65+
{
66+
byte[] nonceBytes = new byte[16];
67+
random.GetBytes(nonceBytes);
68+
nonce = Convert.ToBase64String(nonceBytes);
69+
}
7070

7171
var component = new Mock<IReactComponent>();
7272
component.Setup(x => x.RenderHtml(false, false, null)).Returns("HTML");
73-
component.Setup(x => x.RenderJavaScript()).Returns("JS");
74-
75-
var config = new Mock<IReactSiteConfiguration>();
76-
77-
var environment = ConfigureMockEnvironment(config.Object);
78-
79-
environment.Setup(x => x.Configuration).Returns(config.Object);
73+
component.Setup(x => x.RenderJavaScript()).Returns("JS");
74+
75+
var config = new Mock<IReactSiteConfiguration>();
76+
77+
var environment = ConfigureMockEnvironment(config.Object);
78+
79+
environment.Setup(x => x.Configuration).Returns(config.Object);
8080
environment.Setup(x => x.CreateComponent(
8181
"ComponentName",
8282
new { },
8383
null,
8484
false
8585
)).Returns(component.Object);
86-
86+
8787
// without nonce
8888
var result = HtmlHelperExtensions.ReactWithInit(
8989
htmlHelper: null,
@@ -94,11 +94,11 @@ public void ScriptNonceIsReturned()
9494
Assert.Equal(
9595
"HTML" + System.Environment.NewLine + "<script>JS</script>",
9696
result.ToString()
97-
);
98-
99-
config.Setup(x => x.ScriptNonceProvider).Returns(() => nonce);
100-
101-
// with nonce
97+
);
98+
99+
config.Setup(x => x.ScriptNonceProvider).Returns(() => nonce);
100+
101+
// with nonce
102102
result = HtmlHelperExtensions.ReactWithInit(
103103
htmlHelper: null,
104104
componentName: "ComponentName",

0 commit comments

Comments
 (0)