Skip to content

Commit

Permalink
Merge pull request #33692 from code-dot-org/netsim-chrome-test-fix
Browse files Browse the repository at this point in the history
Tests: Fix NetSim unit tests on Chrome
  • Loading branch information
islemaster committed Mar 18, 2020
2 parents 9dd3de4 + 587fa8d commit 82f12c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 82f12c0

Please sign in to comment.