Skip to content

Commit

Permalink
fix module loading for SpecRunnerUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonsanjose committed Jul 13, 2012
1 parent b6aef77 commit e3655e9
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion test/spec/CSSUtils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define(function (require, exports, module) {
Async = require("utils/Async"),
FileUtils = require("file/FileUtils"),
CSSUtils = require("language/CSSUtils"),
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");

var testPath = SpecRunnerUtils.getTestPath("/spec/CSSUtils-test-files"),
simpleCssFileEntry = new NativeFileSystem.FileEntry(testPath + "/simple.css"),
Expand Down
2 changes: 1 addition & 1 deletion test/spec/CodeHintUtils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ define(function (require, exports, module) {

// Load dependent modules
var HTMLUtils = require("language/HTMLUtils"),
SpecRunnerUtils = require("./SpecRunnerUtils.js"),
SpecRunnerUtils = require("spec/SpecRunnerUtils"),
Editor = require("editor/Editor").Editor;

//Use a clean version of the editor each time
Expand Down
2 changes: 1 addition & 1 deletion test/spec/Document-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ define(function (require, exports, module) {
Commands, // loaded from brackets.test
EditorManager, // loaded from brackets.test
DocumentManager, // loaded from brackets.test
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");


describe("Document", function () {
Expand Down
2 changes: 1 addition & 1 deletion test/spec/DocumentCommandHandlers-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ define(function (require, exports, module) {
Commands, // loaded from brackets.test
DocumentCommandHandlers, // loaded from brackets.test
DocumentManager, // loaded from brackets.test
SpecRunnerUtils = require("./SpecRunnerUtils.js"),
SpecRunnerUtils = require("spec/SpecRunnerUtils"),
NativeFileSystem = require("file/NativeFileSystem").NativeFileSystem,
FileUtils = require("file/FileUtils");

Expand Down
2 changes: 1 addition & 1 deletion test/spec/Editor-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ define(function (require, exports, module) {
'use strict';

var Editor = require("editor/Editor").Editor,
SpecRunnerUtils = require("./SpecRunnerUtils.js"),
SpecRunnerUtils = require("spec/SpecRunnerUtils"),
EditorUtils = require("editor/EditorUtils");

describe("Editor", function () {
Expand Down
2 changes: 1 addition & 1 deletion test/spec/EditorCommandHandlers-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define(function (require, exports, module) {
EditorCommandHandlers = require("editor/EditorCommandHandlers"),
Commands = require("command/Commands"),
CommandManager = require("command/CommandManager"),
SpecRunnerUtils = require("./SpecRunnerUtils.js"),
SpecRunnerUtils = require("spec/SpecRunnerUtils"),
EditorUtils = require("editor/EditorUtils");

describe("EditorCommandHandlers", function () {
Expand Down
2 changes: 1 addition & 1 deletion test/spec/ExtensionUtils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ define(function (require, exports, module) {
'use strict';

var ExtensionUtils,
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");


describe("Extension Utils", function () {
Expand Down
2 changes: 1 addition & 1 deletion test/spec/FileIndexManager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define(function (require, exports, module) {
// Load dependent modules
var FileIndexManager,
ProjectManager,
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");

describe("FileIndexManager", function () {

Expand Down
2 changes: 1 addition & 1 deletion test/spec/InlineEditorProviders-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ define(function (require, exports, module) {
Dialogs = require("widgets/Dialogs"),
NativeFileSystem = require("file/NativeFileSystem").NativeFileSystem,
FileUtils = require("file/FileUtils"),
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");

describe("InlineEditorProviders", function () {

Expand Down
2 changes: 1 addition & 1 deletion test/spec/LiveDevelopment-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
define(function (require, exports, module) {
'use strict';

var SpecRunnerUtils = require("./SpecRunnerUtils.js"),
var SpecRunnerUtils = require("spec/SpecRunnerUtils"),
NativeApp, //The following are all loaded from the test window
LiveDevelopment,
Inspector,
Expand Down
2 changes: 1 addition & 1 deletion test/spec/LowLevelFileIO-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ define(function (require, exports, module) {
'use strict';

// Load dependent modules
var SpecRunnerUtils = require("./SpecRunnerUtils.js");
var SpecRunnerUtils = require("spec/SpecRunnerUtils");
var _FSEncodings = require("file/NativeFileSystem").NativeFileSystem._FSEncodings;

// These are tests for the low-level file io routines in brackets-app. Make sure
Expand Down
2 changes: 1 addition & 1 deletion test/spec/Menu-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define(function (require, exports, module) {
Commands,
KeyBindingManager,
Menus,
SpecRunnerUtils = require("./SpecRunnerUtils.js"),
SpecRunnerUtils = require("spec/SpecRunnerUtils"),
StringsUtils = require("utils/StringUtils"),
Strings = require("strings");

Expand Down
2 changes: 1 addition & 1 deletion test/spec/PreferencesManager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ define(function (require, exports, module) {
// Load dependent modules
var PreferencesManager = require("preferences/PreferencesManager"),
PreferenceStorage = require("preferences/PreferenceStorage").PreferenceStorage,
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");

var CLIENT_ID = "PreferencesManager-test";

Expand Down
2 changes: 1 addition & 1 deletion test/spec/ProjectManager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ define(function (require, exports, module) {

// Load dependent modules
var ProjectManager, // Load from brackets.test
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");

describe("ProjectManager", function () {

Expand Down
2 changes: 1 addition & 1 deletion test/spec/WorkingSetView-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ define(function (require, exports, module) {
Commands,
DocumentManager,
FileViewController,
SpecRunnerUtils = require("./SpecRunnerUtils.js");
SpecRunnerUtils = require("spec/SpecRunnerUtils");

describe("WorkingSetView", function () {

Expand Down

0 comments on commit e3655e9

Please sign in to comment.