Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into feature/rds-utils
  • Loading branch information
alichherawalla committed Jul 7, 2021
2 parents 5ef01b5 + baac61f commit 99d046f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ describe('JavaMap', () => {
it('entrySet', () => {
const obj = { foo: 'Foo Value', bar: 'Bar Value' };
const map = new JavaMap(obj, identityMapper);
expect(map.entrySet().toJSON()).toEqual([
{ key: 'foo', value: 'Foo Value' },
{ key: 'bar', value: 'Bar Value' },
]);
expect(map.entrySet().toJSON()).toEqual([{ key: 'foo', value: 'Foo Value' }, { key: 'bar', value: 'Bar Value' }]);
});

it('equal', () => {
Expand Down Expand Up @@ -74,7 +71,7 @@ describe('JavaMap', () => {

it('keySet returns a JavaArray with each element of type JavaString', () => {
const obj = { foo: 'Foo Value', bar: 'Bar Value' };
const map = new JavaMap(obj, identityMapper);
const map = new JavaMap(obj, mapper);
expect(map.keySet()).toEqual(new JavaArray([new JavaString('foo'), new JavaString('bar')], mapper));
});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { JavaArray } from './array';
import { toJSON } from './to-json';
import { map } from './mapper';

export class JavaMap {
private map: Map<string, any>;
Expand Down Expand Up @@ -57,7 +56,7 @@ export class JavaMap {
}

keySet() {
return map(Array.from(this.map.keys()));
return new JavaArray(Array.from(this.map.keys()).map(this.mapper as any), this.mapper);
}

put(key, value) {
Expand Down

0 comments on commit 99d046f

Please sign in to comment.