diff --git a/test/functional/module.js b/test/functional/module.js
index 813c7fbe..a94cafa8 100644
--- a/test/functional/module.js
+++ b/test/functional/module.js
@@ -18,7 +18,7 @@
 // Variables from protractor.conf.js -> params: {}
 var config = browser.params;
 
-describe('Storyboard Homepage', function () {
+describe('StoryBoard Homepage', function () {
     'use strict';
 
     it('should have storyboard as the title', function () {
@@ -26,6 +26,6 @@ describe('Storyboard Homepage', function () {
         browser.get(config.buildUrl('/'));
 
         var title = element(by.tagName('title'));
-        expect(title.getInnerHtml()).toEqual('Storyboard');
+        expect(title.getInnerHtml()).toEqual('StoryBoard');
     });
 });
diff --git a/test/functional/projects/routes.js b/test/functional/projects/routes.js
index 7ecc52e6..f31943c7 100644
--- a/test/functional/projects/routes.js
+++ b/test/functional/projects/routes.js
@@ -18,7 +18,7 @@
 // Variables from protractor.conf.js -> params: {}
 var config = browser.params;
 
-describe('Storyboard Project Routes', function () {
+describe('StoryBoard Project Routes', function () {
     'use strict';
 
     it('should redirect /project to /project/list', function () {
diff --git a/test/functional/stories/routes.js b/test/functional/stories/routes.js
index 03ecdbf2..b6fed207 100644
--- a/test/functional/stories/routes.js
+++ b/test/functional/stories/routes.js
@@ -17,7 +17,7 @@
 // Variables from protractor.conf.js -> params: {}
 var config = browser.params;
 
-describe('Storyboard Story Routes', function () {
+describe('StoryBoard Story Routes', function () {
     'use strict';
 
     it('should redirect /story to /story/list', function () {