summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/dispatchers
diff options
context:
space:
mode:
authorGiovane <giovaneliberato@gmail.com>2015-09-15 17:03:47 -0300
committerGiovane <giovaneliberato@gmail.com>2015-09-15 17:14:23 -0300
commitd09c979351bdb88229bab5506143136396105b2f (patch)
tree8eda4f04880dcb0dfafab5703298097c5727b436 /web-ui/test/spec/dispatchers
parent9bb73608765fa413623689fde672c7b3b4fd01f9 (diff)
#442 Moves feedback box component to mail_view related folders.
Diffstat (limited to 'web-ui/test/spec/dispatchers')
-rw-r--r--web-ui/test/spec/dispatchers/right_pane_dispatcher.spec.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web-ui/test/spec/dispatchers/right_pane_dispatcher.spec.js b/web-ui/test/spec/dispatchers/right_pane_dispatcher.spec.js
index f5386b85..1270fc4c 100644
--- a/web-ui/test/spec/dispatchers/right_pane_dispatcher.spec.js
+++ b/web-ui/test/spec/dispatchers/right_pane_dispatcher.spec.js
@@ -54,7 +54,7 @@ describeComponent('dispatchers/right_pane_dispatcher', function () {
});
it('listens to open feedback event and open feedback box', function () {
- var feedbackBox = require('feedback/compose_feedback');
+ var feedbackBox = require('mail_view/ui/compose_feedback');
spyOn(feedbackBox, 'attachTo');
this.component.trigger(document, Pixelated.events.ui.feedback.open);
@@ -62,7 +62,6 @@ describeComponent('dispatchers/right_pane_dispatcher', function () {
expect(feedbackBox.attachTo).toHaveBeenCalled();
});
-
});
it('listens to open a draft and creates it', function () {