Skip to content

Commit

Permalink
More appropriate language in unit test prompts.
Browse files Browse the repository at this point in the history
  • Loading branch information
lcarrere committed Nov 21, 2024
1 parent e7daf0d commit e6fdc01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/ConversationViewModelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public async Task CancelPromptAfter1sec()

var testConversation = testService.GetNewConversationViewModel();

testConversation.ConversationViewModel.InputText = "tell me a fucking story";
testConversation.ConversationViewModel.InputText = "tell me a story";
testConversation.ConversationViewModel.Submit();

await Task.Delay(1000);
Expand All @@ -50,7 +50,7 @@ public async Task CancelPromptAfter50Ms()

var testConversation = testService.GetNewConversationViewModel();

testConversation.ConversationViewModel.InputText = "tell me a fucking story";
testConversation.ConversationViewModel.InputText = "tell me a story";
testConversation.ConversationViewModel.Submit();

await Task.Delay(50);
Expand All @@ -70,7 +70,7 @@ public async Task CancelPromptImmediatelyAfterSubmit()

var testConversation = testService.GetNewConversationViewModel();

testConversation.ConversationViewModel.InputText = "tell me a fucking story";
testConversation.ConversationViewModel.InputText = "tell me a story";
testConversation.ConversationViewModel.Submit();

await testConversation.ConversationViewModel.Cancel();
Expand Down

0 comments on commit e6fdc01

Please sign in to comment.