summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-16 14:03:36 +0100
committerAndreas Stöckel <andreas@somweyr.de>2015-02-16 14:03:36 +0100
commitf69518b192ba5015e7ececddbfcf3a3695487d00 (patch)
tree93ac811215090618ce408b22ef187fbbe2c9abd4 /test
parente2a765fc4eaf559bce04b53ca1a1538b1f5f1628 (diff)
Renamed oxm files to generic osxml
Diffstat (limited to 'test')
-rw-r--r--test/plugins/filesystem/FileLocatorTest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/plugins/filesystem/FileLocatorTest.cpp b/test/plugins/filesystem/FileLocatorTest.cpp
index 87a9223..361a3ca 100644
--- a/test/plugins/filesystem/FileLocatorTest.cpp
+++ b/test/plugins/filesystem/FileLocatorTest.cpp
@@ -213,11 +213,11 @@ TEST(FileLocator, testDefaultSearchPaths)
FileLocator locator;
locator.addDefaultSearchPaths();
- assert_not_located(locator, "book.oxm", "", ResourceType::UNKNOWN);
- assert_located(locator, "domain/book.oxm", "", ResourceType::UNKNOWN);
- assert_located(locator, "book.oxm", "", ResourceType::DOMAIN_DESC);
- assert_not_located(locator, "color.oxm", "", ResourceType::UNKNOWN);
- assert_located(locator, "typesystem/color.oxm", "", ResourceType::UNKNOWN);
- assert_located(locator, "color.oxm", "", ResourceType::TYPESYSTEM);
+ assert_not_located(locator, "book.osxml", "", ResourceType::UNKNOWN);
+ assert_located(locator, "domain/book.osxml", "", ResourceType::UNKNOWN);
+ assert_located(locator, "book.osxml", "", ResourceType::DOMAIN_DESC);
+ assert_not_located(locator, "color.osxml", "", ResourceType::UNKNOWN);
+ assert_located(locator, "typesystem/color.osxml", "", ResourceType::UNKNOWN);
+ assert_located(locator, "color.osxml", "", ResourceType::TYPESYSTEM);
}
}