Skip to content

Commit

Permalink
fix(code): Fixed the reference issue
Browse files Browse the repository at this point in the history
Fixed the reference issue to the Constants.ts file in Helpers and Report classes.
  • Loading branch information
kasunkv committed Aug 27, 2017
1 parent 5c1b0d0 commit 7b0c351
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildtask/OwaspZapScan/classes/Helper.ts
Expand Up @@ -2,7 +2,7 @@ import * as XmlParser from 'xmljson';

import { AlertResult } from './../interfaces/types/AlertResult';
import { AlertItem, ScanReport, Site } from './../interfaces/types/ZapReport';
import { Constants } from './constants';
import { Constants } from './Constants';

export class Helpers {
constructor () {}
Expand Down
2 changes: 1 addition & 1 deletion buildtask/OwaspZapScan/classes/Reports.ts
Expand Up @@ -8,7 +8,7 @@ import * as XmlParser from 'xmljson';

import { AlertItem } from './../interfaces/types/ZapReport';
import { AlertRowType, ReportType } from './../enums/Enums';
import { Constants } from './constants';
import { Constants } from './Constants';
import { Helpers } from './../classes/Helper';
import { AlertResult } from './../interfaces/types/AlertResult';
import { ZapScanReportOptions } from './../interfaces/types/ZapScan';
Expand Down

0 comments on commit 7b0c351

Please sign in to comment.