Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ codeunit 139620 ErrMsgScenarioTestHelper
begin
// Create a new currency with GL account setup and two exchange rates for the currency
CurrencyCode := LibraryERM.CreateCurrencyWithGLAccountSetup();
LibraryERM.CreateExchangeRate(CurrencyCode, Today() - 1, 100, 100);
LibraryERM.CreateExchangeRate(CurrencyCode, Today() + 5, 101, 101);
LibraryERM.CreateExchangeRate(CurrencyCode, WorkDate() - 1, 100, 100);
LibraryERM.CreateExchangeRate(CurrencyCode, WorkDate() + 5, 101, 101);

// Create a customer with new currency
LibrarySales.CreateCustomer(Customer);
Expand Down
Loading