File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
src/test/java/io/supertokens/test/multitenant Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres
66to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 7.0.7] - 2023-10-19
9+
10+ - Fixes test that verifies tenant config persistence
11+
812## [ 7.0.6] - 2023-10-18
913
1014- Fixes issue with cron tasks that run per app and tenant
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ compileTestJava { options.encoding = "UTF-8" }
1919// }
2020// }
2121
22- version = " 7.0.6 "
22+ version = " 7.0.7 "
2323
2424
2525repositories {
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ public void randomlyTestLoadConfig()
101101
102102 TenantConfig persistedTenantConfig = Multitenancy .getTenantInfo (process .getProcess (),
103103 tenantConfig .tenantIdentifier );
104- assertEquals (tenantConfig , persistedTenantConfig );
104+ assertTrue (tenantConfig . deepEquals ( persistedTenantConfig ) );
105105
106106 } catch (InvalidProviderConfigException | InvalidConfigException e ) {
107107 assertFalse (isOk );
You can’t perform that action at this time.
0 commit comments