Skip to content

Commit d3210ab

Browse files
committed
remove other collections expressions and empty whitespace
1 parent 6b81e31 commit d3210ab

10 files changed

Lines changed: 31 additions & 31 deletions

src/Bandwidth.Standard.Test/Unit/Model/BridgeCompleteCallbackTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void CallIdTest()
127127
{
128128
instance.CallId = "c-1234";
129129
Assert.IsType<string>(instance.CallId);
130-
Assert.Equal("c-1234", instance.CallId);
130+
Assert.Equal("c-1234", instance.CallId);
131131
}
132132
/// <summary>
133133
/// Test the property 'CallUrl'

src/Bandwidth.Standard.Test/Unit/Model/CallbackMethodEnumTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void CallbackMethodEnumInstanceTest()
4747
{
4848
Assert.IsType<CallbackMethodEnum>(instance);
4949
}
50-
50+
5151
}
5252

5353
}

src/Bandwidth.Standard.Test/Unit/Model/CallbackTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ public CallbackTests()
6161
to: "1234567890",
6262
description: "Test Status Callback",
6363
message: new StatusCallbackMessage(
64-
id: "1661365814859loidf7mcwd4qacn7",
65-
owner: "+15553332222",
66-
applicationId: "93de2206-9669-4e07-948d-329f4b722ee2",
64+
id: "1661365814859loidf7mcwd4qacn7",
65+
owner: "+15553332222",
66+
applicationId: "93de2206-9669-4e07-948d-329f4b722ee2",
6767
time: DateTime.Now,
68-
segmentCount: 1,
68+
segmentCount: 1,
6969
direction: MessageDirectionEnum.In,
7070
to: new List<string> { "+15552223333" },
71-
from: "+15553332222",
72-
text: "Hello world",
73-
tag: "custom string",
74-
media: ["https://dev.bandwidth.com/images/bandwidth-logo.png"],
71+
from: "+15553332222",
72+
text: "Hello world",
73+
tag: "custom string",
74+
media: new List<string> { "https://dev.bandwidth.com/images/bandwidth-logo.png" },
7575
priority: PriorityEnum.Default,
7676
channel: MultiChannelMessageChannelEnum.SMS
7777
),

src/Bandwidth.Standard.Test/Unit/Model/CreateCallTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void DisplayNameTest()
109109
{
110110
Assert.IsType<string>(instance.DisplayName);
111111
Assert.Equal("John Doe", instance.DisplayName);
112-
}
112+
}
113113
/// <summary>
114114
/// Test the property 'Uui'
115115
/// </summary>

src/Bandwidth.Standard.Test/Unit/Model/CreateMessageRequestErrorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public CreateMessageRequestErrorTests()
3434
{
3535
fieldErrors = new List<FieldError>() {
3636
new FieldError(
37-
fieldName: "from",
37+
fieldName: "from",
3838
description: "`invalid` must be replaced with a valid E164 formatted telephone number"
3939
)
4040
};

src/Bandwidth.Standard.Test/Unit/Model/MmsMessageContentTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void TextTest()
6969
[Fact]
7070
public void MediaTest()
7171
{
72-
var mediaList = new List<MmsMessageContentFile> {
72+
var mediaList = new List<MmsMessageContentFile> {
7373
new MmsMessageContentFile(fileUrl: "https://test.url/1"),
7474
new MmsMessageContentFile(fileUrl: "https://test.url/2")
7575
};

src/Bandwidth.Standard.Test/Unit/Model/MultiChannelChannelListObjectContentTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public MultiChannelChannelListObjectContentTests()
4747
postbackData: new byte[] { 1, 2, 3 }
4848
))
4949
};
50-
50+
5151
instanceRbmMessageContentText = new MultiChannelChannelListObjectContent(new RbmMessageContentText(
5252
text: "Test message",
5353
suggestions: suggestions

src/Bandwidth.Standard.Test/Unit/Model/StatusCallbackMessageTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ public class StatusCallbackMessageTests : IDisposable
3636
public StatusCallbackMessageTests()
3737
{
3838
instance = new StatusCallbackMessage(
39-
id: "1661365814859loidf7mcwd4qacn7",
40-
owner: "+15553332222",
41-
applicationId: "93de2206-9669-4e07-948d-329f4b722ee2",
39+
id: "1661365814859loidf7mcwd4qacn7",
40+
owner: "+15553332222",
41+
applicationId: "93de2206-9669-4e07-948d-329f4b722ee2",
4242
time: DateTime.Now,
43-
segmentCount: 1,
43+
segmentCount: 1,
4444
direction: MessageDirectionEnum.In,
4545
to: new List<string> { "+15552223333" },
46-
from: "+15553332222",
47-
text: "Hello world",
48-
tag: "custom string",
49-
media: ["https://dev.bandwidth.com/images/bandwidth-logo.png"],
46+
from: "+15553332222",
47+
text: "Hello world",
48+
tag: "custom string",
49+
media: new List<string> { "https://dev.bandwidth.com/images/bandwidth-logo.png" },
5050
priority: PriorityEnum.Default,
5151
channel: MultiChannelMessageChannelEnum.SMS
5252
);

src/Bandwidth.Standard.Test/Unit/Model/StatusCallbackTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ public StatusCallbackTests()
4242
to: "1234567890",
4343
description: "Test Status Callback",
4444
message: new StatusCallbackMessage(
45-
id: "1661365814859loidf7mcwd4qacn7",
46-
owner: "+15553332222",
47-
applicationId: "93de2206-9669-4e07-948d-329f4b722ee2",
45+
id: "1661365814859loidf7mcwd4qacn7",
46+
owner: "+15553332222",
47+
applicationId: "93de2206-9669-4e07-948d-329f4b722ee2",
4848
time: DateTime.Now,
49-
segmentCount: 1,
49+
segmentCount: 1,
5050
direction: MessageDirectionEnum.In,
5151
to: new List<string> { "+15552223333" },
52-
from: "+15553332222",
53-
text: "Hello world",
54-
tag: "custom string",
55-
media: ["https://dev.bandwidth.com/images/bandwidth-logo.png"],
52+
from: "+15553332222",
53+
text: "Hello world",
54+
tag: "custom string",
55+
media: new List<string> { "https://dev.bandwidth.com/images/bandwidth-logo.png" },
5656
priority: PriorityEnum.Default,
5757
channel: MultiChannelMessageChannelEnum.SMS
5858
),

src/Bandwidth.Standard.Test/Unit/Model/VerificationUpdateRequestTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public void IsvResellerTest()
163163
Assert.IsType<string>(instance.IsvReseller);
164164
Assert.Equal("test", instance.IsvReseller);
165165
}
166-
166+
167167
/// <summary>
168168
/// Test the property 'PrivacyPolicyUrl'
169169
/// </summary>

0 commit comments

Comments
 (0)