Explicitly set scan term-count to 10 before first scan operation: should not be neces...
authorMike Taylor <mike@miketaylor.org.uk>
Tue, 8 Jun 2010 14:41:35 +0000 (15:41 +0100)
committerMike Taylor <mike@miketaylor.org.uk>
Tue, 8 Jun 2010 14:41:35 +0000 (15:41 +0100)
t/15-scan.t
t/25-scan.t

index 7bbbd69..504cc76 100644 (file)
@@ -16,6 +16,7 @@ my $conn = Net::Z3950::ZOOM::connection_new($host, 0);
 $errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
 ok($errcode == 0, "connection to '$host'");
 
+Net::Z3950::ZOOM::connection_option_set($conn, number => 10);
 my($ss, $n) = scan($conn, 0, "w", 10);
 
 my @terms = ();
index 145fa1a..40fd46f 100644 (file)
@@ -14,6 +14,7 @@ my $conn;
 eval { $conn = new ZOOM::Connection($host, 0) };
 ok(!$@, "connection to '$host'");
 
+$conn->option(number => 10);
 my($ss, $n) = scan($conn, 0, "w", 10);
 
 my @terms = ();