summaryrefslogtreecommitdiff
path: root/tests/base.js
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2014-11-10 16:09:54 +0200
committerLV-426 <lv-426@taproot.org.il>2014-11-10 16:09:54 +0200
commitba6e95f3d76b84571ef2cf016b26fc98b2d75c43 (patch)
tree1306ea732317d1e0a9bab8852b5dc0ca1bfb3a38 /tests/base.js
parent0fed1a74d549ff6c84e162c3f4a3605848727dd8 (diff)
rename rhizicore -> rz_core, move towards common rz_ prefix
Diffstat (limited to 'tests/base.js')
-rw-r--r--tests/base.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/base.js b/tests/base.js
index 6ec22cf6..72ce28b4 100644
--- a/tests/base.js
+++ b/tests/base.js
@@ -64,17 +64,17 @@ function run_tests(settings) {
}
function reset(window) {
- window.require('rhizicore').graph.clear();
+ window.require('rz_core').graph.clear();
}
function nodes(window) {
- return window.require('rhizicore').force.nodes().map(function (n) {
+ return window.require('rz_core').force.nodes().map(function (n) {
return n.name;
});
}
function links(window) {
- return window.require('rhizicore').force.links().map(function (l) {
+ return window.require('rz_core').force.links().map(function (l) {
debugger;
return [l.source.name, l.target.name, l.name];
});