Skip to content
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

Tests: Fix NetSim unit tests on Chrome #33692

Merged
merged 1 commit into from
Mar 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/test/unit/netsim/NetSimLogEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('NetSimLogEntry', function() {
it('gracefully converts a malformed base64Payload to empty string', function() {
var logEntry = new NetSimLogEntry(testShard, {
base64Binary: {
string: 'totally not a base64 string',
string: 'not a base64 string because of the question mark?',
len: 7
}
});
Expand Down
2 changes: 1 addition & 1 deletion apps/test/unit/netsim/NetSimMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('NetSimMessage', function() {
it('gracefully converts a malformed base64Payload to empty string', function() {
var message = new NetSimMessage(testShard, {
base64Payload: {
string: 'totally not a base64 string',
string: 'not a base64 string because of the question mark?',
len: 7
}
});
Expand Down