diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-28 19:30:13 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-28 19:30:13 +0000 |
commit | c26e3ff9697f6753b7730773c813f666dbffad56 (patch) | |
tree | 365fad49639380dec2d8cf831c1516a1704b23e0 /tests/Naming_Test.cpp | |
parent | 7700b84b3738e80ab5c8d3cad4dae14a1452928b (diff) | |
download | ATCD-c26e3ff9697f6753b7730773c813f666dbffad56.tar.gz |
*** empty log message ***
Diffstat (limited to 'tests/Naming_Test.cpp')
-rw-r--r-- | tests/Naming_Test.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/Naming_Test.cpp b/tests/Naming_Test.cpp index f3a4cdc2fd6..4d33f2f80aa 100644 --- a/tests/Naming_Test.cpp +++ b/tests/Naming_Test.cpp @@ -150,23 +150,23 @@ main (int argc, char *argv[]) } // Add some bindings to the database - bind (ns_context); + bind (*ns_context); // Should find the entries - find (ns_context, 1, 0); + find (*ns_context, 1, 0); // Rebind with negative values - rebind (ns_context); + rebind (*ns_context); // Should find the entries - find (ns_context, -1, 0); + find (*ns_context, -1, 0); // Remove all bindings from database - unbind (ns_context); + unbind (*ns_context); // Should not find the entries - find (ns_context, 1, -1); - find (ns_context, -1, -1); + find (*ns_context, 1, -1); + find (*ns_context, -1, -1); delete ns_context; |