Merge branch 'master' into development

* master:
  [ADF-2825] - Form visibility fix on Master (#3237)
This commit is contained in:
Eugenio Romano
2018-06-22 21:56:01 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ Last reviewed: 2018-03-19
# Login component # Login component
Authenticates to Alfresco Content Services and Alfresco Process Services. Authenticates to Alfresco Content Services and or Alfresco Process Services.
![Login component](../docassets/images/custom-footer.png) ![Login component](../docassets/images/custom-footer.png)

View File

@@ -311,7 +311,7 @@ describe('AuthenticationService', () => {
}, },
(err: any) => { (err: any) => {
expect(err).toBeDefined(); expect(err).toBeDefined();
expect(authService.getTicketBpm()).toBe(null); expect(authService.getTicketBpm()).toBe(undefined);
done(); done();
}); });