File tree 1 file changed +4
-4
lines changed
constructor_functions_exercise
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ beforeEach(function(){
7
7
8
8
describe ( "Person" , function ( ) {
9
9
it ( "has a firstName" , function ( ) {
10
- expect ( person . hasOwnProperty ( firstName ) ) . to . equal ( true ) ;
10
+ expect ( person . hasOwnProperty ( ' firstName' ) ) . to . equal ( true ) ;
11
11
} ) ;
12
12
it ( "has a lastName" , function ( ) {
13
- expect ( person . hasOwnProperty ( lastName ) ) . to . equal ( true ) ;
13
+ expect ( person . hasOwnProperty ( ' lastName' ) ) . to . equal ( true ) ;
14
14
} ) ;
15
15
it ( "has a favoriteColor" , function ( ) {
16
- expect ( person . hasOwnProperty ( favoriteColor ) ) . to . equal ( true ) ;
16
+ expect ( person . hasOwnProperty ( ' favoriteColor' ) ) . to . equal ( true ) ;
17
17
} ) ;
18
18
it ( "has a favoriteNumber" , function ( ) {
19
- expect ( person . hasOwnProperty ( favoriteNumber ) ) . to . equal ( true ) ;
19
+ expect ( person . hasOwnProperty ( ' favoriteNumber' ) ) . to . equal ( true ) ;
20
20
} ) ;
21
21
} ) ;
22
22
You can’t perform that action at this time.
0 commit comments