Update custom-fields-query-dropdown.component.spec.ts

This commit is contained in:
shamoon
2026-07-29 19:10:15 -07:00
committed by GitHub
parent f05b4b1ef0
commit 6704ac39e3
@@ -161,7 +161,7 @@ describe('CustomFieldsQueryDropdownComponent', () => {
it('should normalize localized monetary comparison values', () => {
const atom = new CustomFieldQueryAtom([3, 'exact', null])
component.setMonetaryComparisonValue(atom, '1.234,56')
component.setMonetaryValue(atom, '1.234,56')
expect(atom.value).toEqual('1234.56')
})
@@ -169,7 +169,7 @@ describe('CustomFieldsQueryDropdownComponent', () => {
it('should preserve API-formatted monetary comparison values', () => {
const atom = new CustomFieldQueryAtom([3, 'exact', null])
component.setMonetaryComparisonValue(atom, '1234.56')
component.setMonetaryValue(atom, '1234.56')
expect(atom.value).toEqual('1234.56')
})