From 4939b636da1c4e8f76d537096e1780ef2ae9c9f7 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 12 Mar 2013 13:48:43 -0700 Subject: [PATCH] Add missing spec segment to fixture packages path --- native/atom_window_controller.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/atom_window_controller.mm b/native/atom_window_controller.mm index ad7bcea56..90e63d877 100644 --- a/native/atom_window_controller.mm +++ b/native/atom_window_controller.mm @@ -60,7 +60,7 @@ @"node_modules", nil]; NSMutableArray *resourcePaths = [[NSMutableArray alloc] init]; if (_runningSpecs) { - NSString *fixturePackagesDirectory = [NSString stringWithFormat:@"%@/fixtures/packages", _resourcePath]; + NSString *fixturePackagesDirectory = [NSString stringWithFormat:@"%@/spec/fixtures/packages", _resourcePath]; [resourcePaths addObject:fixturePackagesDirectory]; } NSString *userPackagesDirectory = [@"~/.atom/packages" stringByStandardizingPath];