]> gitweb.factorcode.org Git - factor.git/commitdiff
sqlite: Fix using.
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 26 Aug 2012 18:57:24 +0000 (11:57 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 26 Aug 2012 18:57:24 +0000 (11:57 -0700)
basis/db/sqlite/sqlite-tests.factor
basis/db/sqlite/sqlite.factor

index 8802a112bd319769f18001229646a2dd2b1940bc..e5680a1d0a47ffd84b25f7d8ee56e51466fc478d 100644 (file)
@@ -1,7 +1,7 @@
 USING: io io.files io.files.temp io.directories io.launcher
 kernel namespaces prettyprint tools.test db.sqlite db sequences
 continuations db.types db.tuples unicode.case accessors arrays
-sorting layouts ;
+sorting layouts math.parser ;
 IN: db.sqlite.tests
 
 : db-path ( -- path ) "test-" cell number>string ".db" 3append temp-file ;
index 4b0c187220b1661251f86eb0fbf1cac51618c56d..e09d7fbc47a773438784c74d8079481458d44774 100644 (file)
@@ -7,7 +7,7 @@ db.sqlite.lib db.sqlite.ffi db.tuples words db.types combinators
 math.intervals io locals nmake accessors vectors math.ranges random
 math.bitwise db.queries destructors db.tuples.private interpolate
 io.streams.string make db.private sequences.deep
-db.errors.sqlite math.parser ;
+db.errors.sqlite ;
 IN: db.sqlite
 
 TUPLE: sqlite-db path ;