Skip to content

Commit

Permalink
Fix failing test case on IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Dec 1, 2016
1 parent e03a019 commit a7d9c18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ var protobuf = require("protobufjs");

Development:
```
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.0/dist/protobuf.js"></script>
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.1/dist/protobuf.js"></script>
```

Production:
```
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.0/dist/protobuf.min.js"></script>
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.1/dist/protobuf.min.js"></script>
```

The `protobuf` namespace will be available globally.
Expand Down
4 changes: 2 additions & 2 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ CDN usage

Development:
```
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.0/dist/protobuf.js"></script>
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.1/dist/protobuf.js"></script>
```

Production:
```
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.0/dist/protobuf.min.js"></script>
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.0.1/dist/protobuf.min.js"></script>
```

**NOTE:** Remember to replace the version tag with the exact [release](https://github.com/dcodeIO/protobuf.js/releases) your project depends upon.
Expand Down
2 changes: 0 additions & 2 deletions tests/rpc.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ tape.test("RPC", function(test) {

var MyService = root.lookup("MyService");
var service = MyService.create(rpc, true, false);

test.deepEqual(Object.keys(service), [ "MyMethod" ], "should create a service with exactly one method");

service.MyMethod(MyRequest.create({
path: "/"
Expand Down

0 comments on commit a7d9c18

Please sign in to comment.