Skip to content

Commit

Permalink
Fix typo in testRealmConversion (realm#4558)
Browse files Browse the repository at this point in the history
Fixed a typo in the `writeCopyTo` tests
  • Loading branch information
fronck committed May 5, 2022
1 parent e885e7a commit e1f3c04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ x.x.x Release notes (yyyy-MM-dd)
* Improved documentation for `Realm.copyBundledRealmFiles`.
* Refactored notifications to use a `NotificationBucket` API, enabling JS objects to be garbage collected on teardown of the JS engine. ([#4550](https://github.com/realm/realm-js/pull/4550))
* Updated a test to be ready for node 18.
* Fixed a typo in the `testRealmConversions` test which prevented some test scenarios from executing.
* Upgraded Realm Core from v11.14.0 to v11.15.0.

10.16.0 Release notes (2022-4-12)
Expand Down
4 changes: 2 additions & 2 deletions tests/js/session-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -1456,10 +1456,10 @@ module.exports = {
const configDst = Object.assign(
{},
destination == "local"
? srcEncryption == "plain"
? dstEncryption == "plain"
? configLocal
: configLocalEnc
: srcEncryption == "plain"
: dstEncryption == "plain"
? configSync
: configSyncEnc,
);
Expand Down

0 comments on commit e1f3c04

Please sign in to comment.