From b95f44a4ff6febd7818aaadc7c2992df262438df Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Wed, 29 May 2013 19:26:11 -0700 Subject: [PATCH] Type: print correct sizes we test for for std inquiry page --- test-tool/test_inquiry_alloc_length.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-tool/test_inquiry_alloc_length.c b/test-tool/test_inquiry_alloc_length.c index 9311be8..5076d74 100644 --- a/test-tool/test_inquiry_alloc_length.c +++ b/test-tool/test_inquiry_alloc_length.c @@ -87,7 +87,7 @@ test_inquiry_alloc_length(void) ret = inquiry(iscsic, tgt_lun, 0, 0, 512, &task2); CU_ASSERT_EQUAL(ret, 0); - logging(LOG_VERBOSE, "INQUIRY data should be the same when allocation length is 255 and 256 bytes"); + logging(LOG_VERBOSE, "INQUIRY data should be the same when allocation length is 511 and 512 bytes"); ret = task->datain.size != task2->datain.size; CU_ASSERT_EQUAL(ret, 0); ret = memcmp(task->datain.data, task2->datain.data, task->datain.size);