Skip to content

Commit

Permalink
Fixing how we get UTC timestamp integer.
Browse files Browse the repository at this point in the history
  • Loading branch information
schwink committed Aug 9, 2010
1 parent dc79afa commit 88b93c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/web/test/integration/index.js
Expand Up @@ -25,8 +25,8 @@ $(document).ready(function(){
});

asyncTest("basic message send and receive", 1, function() {
var message = "test message " + Date.UTC();

var message = "test message " + (new Date()).getTime();
var connection = new KanaloaConnection(server);

connection.onDataReceived = function(data) {
Expand Down

0 comments on commit 88b93c0

Please sign in to comment.