Removed property accessors from test-file since this wasn't liked by CI build.

This commit is contained in:
Peter Palotas
2014-12-29 00:31:10 +01:00
parent 99fcfbd221
commit 6689de6b7f
+2 -2
View File
@@ -67,11 +67,11 @@ module Marionette.Tests {
super(options);
}
get name(): string {
getName(): string {
return this.get('name');
}
set name(value: string) {
setName(value: string) {
this.set(value);
}
}