Skip to content

Commit

Permalink
Merge pull request #69 from davidparsson/test/codecov
Browse files Browse the repository at this point in the history
Minor tweaks
  • Loading branch information
davidparsson authored Jun 16, 2024
2 parents 9da4106 + 3f42bbf commit 9858f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ builder instance like this:
builder = builder.newBuilder();
```

Please refer to the [e2e_spec.coffee](spec/e2e_spec.coffee) for more details on the usage.
Please refer to the [e2e.spec.ts](spec/e2e.spec.ts) for more details on the usage.

## License

Expand Down
2 changes: 1 addition & 1 deletion src/test_node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export abstract class TestNode {
protected buildNode(element: XMLElement): XMLElement {
if (this._properties.length) {
var propertiesElement = element.ele('properties');
_.forEach(this._properties, function (property) {
_.forEach(this._properties, (property: any) => {
propertiesElement.ele('property', {
name: property.name,
value: property.value,
Expand Down

0 comments on commit 9858f3e

Please sign in to comment.