Skip to content

Commit ccbc3af

Browse files
committed
test: harden test
1 parent e059901 commit ccbc3af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QueryKit.IntegrationTests/Tests/HasConversionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public async Task can_filter_by_email_with_has_conversion()
1717
var testingServiceScope = new TestingServiceScope();
1818
var faker = new Bogus.Faker();
1919

20-
var testEmail = faker.Internet.Email();
20+
var testEmail = $"{Guid.NewGuid()}{faker.Internet.Email()}";
2121
var person = new FakeTestingPersonBuilder()
2222
.WithEmail(testEmail)
2323
.Build();

0 commit comments

Comments
 (0)