Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2788)

Unified Diff: Tools/GardeningServer/scripts/model_unittests.js

Issue 358173003: Remove rebaseline logic from GOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/GardeningServer/scripts/model.js ('k') | Tools/GardeningServer/scripts/ui/actions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/model_unittests.js
diff --git a/Tools/GardeningServer/scripts/model_unittests.js b/Tools/GardeningServer/scripts/model_unittests.js
index 38522c99e055d5a112f5b81180d45748f833a650..441053376bba73a4d269c9baddbbb037ddb29052 100644
--- a/Tools/GardeningServer/scripts/model_unittests.js
+++ b/Tools/GardeningServer/scripts/model_unittests.js
@@ -95,28 +95,6 @@ var kExampleCommitDataXML =
"</entry>\n" +
"</feed>\n";
-test("rebaselineQueue", 3, function() {
- var queue = model.takeRebaselineQueue();
- deepEqual(queue, []);
- model.queueForRebaseline('failureInfo1');
- model.queueForRebaseline('failureInfo2');
- var queue = model.takeRebaselineQueue();
- deepEqual(queue, ['failureInfo1', 'failureInfo2']);
- var queue = model.takeRebaselineQueue();
- deepEqual(queue, []);
-});
-
-test("rebaselineQueue", 3, function() {
- var queue = model.takeExpectationUpdateQueue();
- deepEqual(queue, []);
- model.queueForExpectationUpdate('failureInfo1');
- model.queueForExpectationUpdate('failureInfo2');
- var queue = model.takeExpectationUpdateQueue();
- deepEqual(queue, ['failureInfo1', 'failureInfo2']);
- var queue = model.takeExpectationUpdateQueue();
- deepEqual(queue, []);
-});
-
asyncTest("updateRecentCommits", 2, function() {
var simulator = new NetworkSimulator();
« no previous file with comments | « Tools/GardeningServer/scripts/model.js ('k') | Tools/GardeningServer/scripts/ui/actions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698