Skip to content

Commit

Permalink
chore: change phrasing of Servient test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Jan 27, 2024
1 parent ab9e2ab commit 9878db5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/core/servient_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class MockedProtocolClientFactory implements ProtocolClientFactory {
}

void main() {
group("Servient Tests", () {
test("Should accept a ProtocolClientFactory list as constructor argument",
group("Servient", () {
test("should accept a ProtocolClientFactory list as constructor argument",
() {
final servient = Servient(
clientFactories: [
Expand All @@ -47,7 +47,7 @@ void main() {
});

test(
"Should allow for adding and removing a ProtocolClientFactory at runtime",
"should allow for adding and removing a ProtocolClientFactory at runtime",
() {
final servient = Servient()
..addClientFactory(MockedProtocolClientFactory());
Expand Down

0 comments on commit 9878db5

Please sign in to comment.