summaryrefslogtreecommitdiff
path: root/indra/llinventory/tests
diff options
context:
space:
mode:
authorBryan O'Sullivan <bos@lindenlab.com>2009-11-04 15:14:54 -0800
committerBryan O'Sullivan <bos@lindenlab.com>2009-11-04 15:14:54 -0800
commitfa3b57bd9f0afcf2d38dae27d4b9765624baf758 (patch)
treeff083f4e4eec5d6d4e9191f34cae6450e0a318ac /indra/llinventory/tests
parent0e63920569302a4f6afcbc0feb28ff379e4a4bac (diff)
parentb806edf4ac47d18e1a43fb8dbb5fbcad8d13192f (diff)
Merge the work lost in 49c9461937df back into the tree
Diffstat (limited to 'indra/llinventory/tests')
-rw-r--r--indra/llinventory/tests/inventorymisc_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llinventory/tests/inventorymisc_test.cpp b/indra/llinventory/tests/inventorymisc_test.cpp
index 770594dc9d..c797a70c50 100644
--- a/indra/llinventory/tests/inventorymisc_test.cpp
+++ b/indra/llinventory/tests/inventorymisc_test.cpp
@@ -94,7 +94,7 @@ LLPointer<LLInventoryCategory> create_random_inventory_cat()
LLPointer<LLInventoryCategory> cat = new LLInventoryCategory(
item_id,
parent_id,
- LLAssetType::AT_NONE,
+ LLFolderType::FT_NONE,
std::string("Sample category"));
return cat;
}
@@ -452,7 +452,7 @@ namespace tut
ensure_equals("4.type::getType() failed", dst->getType(), src->getType());
ensure_equals("5.preferred type::getPreferredType() failed", dst->getPreferredType(), src->getPreferredType());
- src->setPreferredType( LLAssetType::AT_TEXTURE);
+ src->setPreferredType( LLFolderType::FT_TEXTURE);
sd = ll_create_sd_from_inventory_category(src);
dst = ll_create_category_from_sd(sd);
ensure_equals("6.preferred type::getPreferredType() failed", dst->getPreferredType(), src->getPreferredType());