summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2008-12-07 20:55:20 +0000
committertweenk <tweenk@users.sourceforge.net>2008-12-07 20:55:20 +0000
commit3faa1062cc11fbcd1b1ddd7a318579248a39f8cb (patch)
tree81263fd2f735318124361050f5a9bc18f9eb9d4f /src
parentChanged term away from "embed" since that has specific meaning. (diff)
downloadinkscape-3faa1062cc11fbcd1b1ddd7a318579248a39f8cb.tar.gz
inkscape-3faa1062cc11fbcd1b1ddd7a318579248a39f8cb.zip
Fix a typo that causes a runtime error during the preferences test.
(bzr r6967)
Diffstat (limited to 'src')
-rw-r--r--src/preferences-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preferences-test.h b/src/preferences-test.h
index 32218daf3..79f852106 100644
--- a/src/preferences-test.h
+++ b/src/preferences-test.h
@@ -78,7 +78,7 @@ public:
prefs->addObserver(obs);
prefs->setInt(path, 10);
TS_ASSERT_EQUALS(obs.value, 10);
- prefs->setInt("some/other/random/path", 10);
+ prefs->setInt("/some/other/random/path", 10);
TS_ASSERT_EQUALS(obs.value, 10); // value should not change
prefs->removeObserver(obs);