-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from Ali-YousefiTelori/main
fix: fix spelling error
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ public class SubscriberIdTests | |
{ | ||
[Fact] | ||
|
||
public void CreateUniqeId_ShouldThrowInvalidEmailAddressException_WhenHaveIncorrectEmail() | ||
public void CreateUniqueId_ShouldThrowInvalidEmailAddressException_WhenHaveIncorrectEmail() | ||
{ | ||
// act | ||
var func = () => SubscriberId.CreateUniqueId("invalidData"); | ||
|
@@ -18,7 +18,7 @@ public void CreateUniqeId_ShouldThrowInvalidEmailAddressException_WhenHaveIncorr | |
[Theory] | ||
[InlineData("[email protected]")] | ||
[InlineData("[email protected]")] | ||
public void CreateUniqeId_ShouldReturnSubscriberId_WhenHaveCorrectEmail(string emailAddress) | ||
public void CreateUniqueId_ShouldReturnSubscriberId_WhenHaveCorrectEmail(string emailAddress) | ||
{ | ||
// arrange | ||
var subId = SubscriberId.CreateUniqueId(emailAddress); | ||
|