summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-20 00:08:43 +0000
committerDavid Robillard <d@drobilla.net>2012-03-20 00:08:43 +0000
commitbfb5d3ad83b17c8a14211c637baf8fe321ba466b (patch)
tree3d11330e1d34c84abd8686bb3597fbb34b9d5ec9 /tests
parent2577e671f25a4922c0218f24e813f2f4f232a075 (diff)
downloadsratom-bfb5d3ad83b17c8a14211c637baf8fe321ba466b.tar.gz
sratom-bfb5d3ad83b17c8a14211c637baf8fe321ba466b.tar.bz2
sratom-bfb5d3ad83b17c8a14211c637baf8fe321ba466b.zip
Support writing to a statement sink (particularly for writing to a model).
Support writing pretty numeric literals in Turtle. git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@4080 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'tests')
-rw-r--r--tests/sratom_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sratom_test.c b/tests/sratom_test.c
index b13def9..e8745fa 100644
--- a/tests/sratom_test.c
+++ b/tests/sratom_test.c
@@ -112,11 +112,11 @@ main()
// eg_one = (Int32)1
lv2_atom_forge_property_head(&forge, eg_one, 0);
- lv2_atom_forge_int32(&forge, 1);
+ lv2_atom_forge_int(&forge, 1);
// eg_two = (Int64)2
lv2_atom_forge_property_head(&forge, eg_two, 0);
- lv2_atom_forge_int64(&forge, 2);
+ lv2_atom_forge_long(&forge, 2);
// eg_three = (Float)3.0
lv2_atom_forge_property_head(&forge, eg_three, 0);