summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-13-evict-non-existing.js
blob: a2d40fd153006d7c4daf38e394bae60179473b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict";

function run_test() {
  do_get_profile();

  var storage = getCacheStorage("disk");
  storage.asyncDoomURI(
    createURI("http://non-existing/"),
    "",
    new EvictionCallback(false, function () {
      finish_cache2_test();
    })
  );

  do_test_pending();
}