Skip to content

Commit 51f3448

Browse files
authored
Set required email app settings in integration test
1 parent 0cb9ba9 commit 51f3448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/SeqCli.EndToEnd/AppInstance/AppInstanceBasicsTestCase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public async Task ExecuteAsync(SeqConnection connection, ILogger logger, CliComm
2121
var app = (await connection.Apps.ListAsync()).Single();
2222

2323
var title = Guid.NewGuid().ToString("N");
24-
exit = runner.Exec("appinstance create", $"-t {title} --app {app.Id} -p To=");
24+
exit = runner.Exec("appinstance create", $"-t {title} --app {app.Id} -p To=[email protected] -p [email protected]");
2525
Assert.Equal(0, exit);
2626

2727
var appInstance = (await connection.AppInstances.ListAsync()).Single();
@@ -42,4 +42,4 @@ public async Task ExecuteAsync(SeqConnection connection, ILogger logger, CliComm
4242
exit = runner.Exec("appinstance list", $"-t {title}");
4343
Assert.Equal(0, exit);
4444
}
45-
}
45+
}

0 commit comments

Comments
 (0)