diff --git a/src/app/app.spec.ts b/src/app/app.spec.ts index af18aafb..0fd3752d 100644 --- a/src/app/app.spec.ts +++ b/src/app/app.spec.ts @@ -31,8 +31,8 @@ describe('App', () => { }) ]); - it('should have an url', inject([App], (app:App) => { - expect(app.url).toEqual('https://github.com/ocombe/ng2-webpack'); + it('should have an url', inject([App], (app: App) => { + expect(app.url).toEqual('https://github.com/preboot/angular2-webpack'); })); }); diff --git a/src/app/app.ts b/src/app/app.ts index a4a15a23..669a4297 100644 --- a/src/app/app.ts +++ b/src/app/app.ts @@ -25,7 +25,7 @@ import {About} from "./components/about/about"; {path: '/About', component: About, name: 'About'} ]) export class App { - url: string = 'https://github.com/ocombe/ng2-webpack'; + url: string = 'https://github.com/preboot/angular2-webpack'; constructor(public api: Api) { }