Skip to content

Commit

Permalink
Remove Notebook test data from ChatGptTranslatorServiceTests
Browse files Browse the repository at this point in the history
This change involves the removal of the 'Notebook' test data from the ChatGptTranslatorServiceTests. This adjustment streamlines the test cases by focusing on fewer items, possibly to align with current testing requirements.
  • Loading branch information
rodion-m committed Jul 28, 2024
1 parent 6747461 commit a2d4d74
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,13 @@ public async Task Translate_object_from_English_to_Russian()
{
new(1,"Book", 5),
new(2,"Pen", 10),
new(3,"Notebook", 3)
}
);

var englishRussianDictionary = new Dictionary<string, string>
{
{ "Book", "Книга" },
{ "Pen", "Ручка" },
{ "Notebook", "Тетрадь" }
};

// Act
Expand Down

0 comments on commit a2d4d74

Please sign in to comment.