diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf60560..07daadfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## (IN PROGRESS) +## [3.1.2](https://github.com/folio-org/ui-organizations/tree/v3.1.2) (2022-03-29) +[Full Changelog](https://github.com/folio-org/ui-organizations/compare/v3.1.1...v3.1.2) + * Manage acquisition unit permission not working. Refs UIORGS-312. ## [3.1.1](https://github.com/folio-org/ui-organizations/tree/v3.1.1) (2022-03-24) diff --git a/package.json b/package.json index 0e0be849..eb08b5e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@folio/organizations", - "version": "3.1.1", + "version": "3.1.2", "description": "Organizations", "main": "index.js", "repository": "folio-org/ui-organizations", diff --git a/src/OrganizationIntegration/utils.test.js b/src/OrganizationIntegration/utils.test.js index 7b5e745b..6a77f169 100644 --- a/src/OrganizationIntegration/utils.test.js +++ b/src/OrganizationIntegration/utils.test.js @@ -84,8 +84,8 @@ describe('OrganizationIntegration utils', () => { describe('getTenantTime', () => { it('should return tenant time', () => { - expect(getTenantTime({ time: '23:00:00.000Z', timeZone: 'Europe/Berlin' })) - .toEqual('00:00:00'); + expect(getTenantTime({ time: '23:00:00.000Z', timeZone: 'Asia/Tbilisi' })) + .toEqual('03:00:00'); }); });