use note instead of diag in tests for non-error debug output
This commit is contained in:
parent
929c012075
commit
67b729fee0
30 changed files with 50 additions and 50 deletions
|
|
@ -170,7 +170,7 @@ cmp_deeply(
|
|||
}),
|
||||
},
|
||||
"Success response contains new users information",
|
||||
) or diag( Dumper $responseObj );
|
||||
) or diag explain $responseObj;
|
||||
$userRed = WebGUI::User->new( $session, $responseObj->{user}->{userId} );
|
||||
is( $userRed->get("username"), "EBRedding", "User exists and username is correct" );
|
||||
$auth = WebGUI::Operation::Auth::getInstance( $session, 'WebGUI', $userRed->getId );
|
||||
|
|
@ -311,7 +311,7 @@ cmp_deeply(
|
|||
}),
|
||||
},
|
||||
"Success response contains new users information",
|
||||
) or diag( Dumper $responseObj );
|
||||
) or diag explain $responseObj;
|
||||
$userRed = WebGUI::User->new( $session, $responseObj->{user}->{userId} );
|
||||
is( $userRed->get("username"), "EBRedding", "User exists and username is correct" );
|
||||
$auth = WebGUI::Operation::Auth::getInstance( $session, 'WebGUI', $userRed->getId );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue