Skip to content

Commit

Permalink
fix(test): add proper closing tag
Browse files Browse the repository at this point in the history
thanks brandy
  • Loading branch information
imhoffd committed Jun 27, 2018
1 parent e035aba commit 39f373f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/ionButtonIsNowAnElement.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe(ruleName, () => {
it('should work with proper style', () => {
let source = `
@Component({
template: \`<ion-button><ion-button>\`
template: \`<ion-button></ion-button>\`
})
class Bar{}
`;
Expand Down
2 changes: 1 addition & 1 deletion test/ionItemIsNowAnElement.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe(ruleName, () => {
it('should work with proper style', () => {
let source = `
@Component({
template: \`<ion-item><ion-item>\`
template: \`<ion-item></ion-item>\`
})
class Bar{}
`;
Expand Down

0 comments on commit 39f373f

Please sign in to comment.