Skip to content

Commit 061ec2f

Browse files
committed
Testcase fix
1 parent 771867a commit 061ec2f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/cpp/runtime/memory/memory_manager_tests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ TEST_F(TvmVMMemoryManagerTest, PooledAllocWithShape) {
177177
FAIL();
178178
} catch (std::exception& e) {
179179
std::string pattern =
180-
"Device does not support allocate data space with specified memory scope: global.texture";
180+
"This alloc should be implemented";
181181
std::string what = e.what();
182182
EXPECT_NE(what.find(pattern), std::string::npos) << what;
183183
}

0 commit comments

Comments
 (0)