summaryrefslogtreecommitdiff
path: root/spec/javascripts/graphs/stat_graph_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/graphs/stat_graph_spec.js')
-rw-r--r--spec/javascripts/graphs/stat_graph_spec.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/javascripts/graphs/stat_graph_spec.js b/spec/javascripts/graphs/stat_graph_spec.js
index f85197d92d4..71b589e6b83 100644
--- a/spec/javascripts/graphs/stat_graph_spec.js
+++ b/spec/javascripts/graphs/stat_graph_spec.js
@@ -1,10 +1,9 @@
-/* eslint-disable quotes, padded-blocks */
+/* eslint-disable quotes */
/* global StatGraph */
//= require graphs/stat_graph
describe("StatGraph", function () {
-
describe("#get_log", function () {
it("returns log", function () {
StatGraph.log = "test";
@@ -18,5 +17,4 @@ describe("StatGraph", function () {
expect(StatGraph.log).toBe("test");
});
});
-
});