-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SK-1439 fix multiple unique column_names in get record request. #140
SK-1439 fix multiple unique column_names in get record request. #140
Conversation
@@ -1930,6 +1941,78 @@ describe('get method with options', () => { | |||
}); | |||
|
|||
|
|||
}); | |||
|
|||
test('get method should send request url with single column name for multiple column value', (done) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the difference between the two tests? Somehow did not spot the different.
} | ||
}); | ||
|
||
const response = skyflow.get(getByIdWithValidMultipleUniqColumnOptions,{encodeURI:false}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@roshmik {encode: false}
is the option we have added in this test and not was in the above test.
My bad, didn't add it in description.
No description provided.