Skip to content

Commit

Permalink
Fix TSLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-ES committed Sep 13, 2016
1 parent a034c5c commit 40b602c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/mixins/h-map-methods.tests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ describe("<HEREMap />", () => {
wrapper.unmount();
});

it("should change the zoom level when the zoom prop on the associated <HEREMap> instance changes", (done) => {
it("should change the zoom level when the zoom prop " +
"on the associated <HEREMap> instance changes", (done) => {
// need to use full DOM rendering here to access lifecycle methods
const wrapper = mount();

Expand Down
4 changes: 2 additions & 2 deletions test/utils/mixin.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const addMixin = mixin({

@addMixin
class Calculator {
static COST: number;
add: (x: number, y: number) => number;
public static COST: number;
public add: (x: number, y: number) => number;
}

describe("<HEREMap />", () => {
Expand Down

0 comments on commit 40b602c

Please sign in to comment.