Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 9de879d

Browse files
committed
chore: drop '!' from "Hello Angular!"
1 parent bfd1896 commit 9de879d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { Component } from '@angular/core';
22

33
@Component({
44
selector: 'my-app',
5-
template: `<h1>Hello Angular!</h1>`
5+
template: `<h1>Hello Angular</h1>`
66
})
77
export class AppComponent { }

e2e/app.e2e-spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { browser, element, by } from 'protractor';
22

33
describe('QuickStart E2E Tests', function () {
44

5-
let expectedMsg = 'Hello Angular!';
6-
5+
let expectedMsg = 'Hello Angular';
76

87
beforeEach(function () {
98
browser.get('');

0 commit comments

Comments
 (0)