Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Rename src/test folder to fix #3072 (#3081)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleung authored and ajafff committed Jul 28, 2017
1 parent f26d3a5 commit 42ff133
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import * as ts from "typescript";

import { Replacement } from "./language/rule/rule";
import * as Linter from "./linter";
import { LintError } from "./test/lintError";
import * as parse from "./test/parse";
import { denormalizeWinPath, mapDefined, readBufferWithDetectedEncoding } from "./utils";
import { LintError } from "./verify/lintError";
import * as parse from "./verify/parse";

const MARKUP_FILE_EXTENSION = ".lint";
const FIXES_FILE_EXTENSION = ".fix";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/rule-tester/linesTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import { assert } from "chai";

import * as lines from "../../src/test/lines";
import * as lines from "../../src/verify/lines";

describe("Rule Test Lines", () => {
describe("createErrorString", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/rule-tester/parseTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import { assert } from "chai";

import * as parse from "../../src/test/parse";
import * as parse from "../../src/verify/parse";
import * as testData from "./testData";

describe("Rule Test Parse", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/rule-tester/testData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import { LintError } from "../../src/test/lintError";
import { LintError } from "../../src/verify/lintError";

/* tslint:disable:object-literal-sort-keys no-consecutive-blank-lines */

Expand Down

0 comments on commit 42ff133

Please sign in to comment.