Skip to content

Commit 2ae9da3

Browse files
committed
[ASTImporter] Enable disabled but passing test
Summary: There is a test which passes since D32947, but it was forgotten to be enabled. This patch enables that disabled test. Reviewers: a.sidorin, r.stahl, xazax.hun Subscribers: rnkovacs, dkrupp, cfe-commits Differential Revision: https://reviews.llvm.org/D47069 llvm-svn: 332728
1 parent 962b911 commit 2ae9da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/unittests/AST/ASTImporterTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ TEST_P(ASTImporterTestBase, IDNSOrdinary) {
13991399
EXPECT_EQ(From->getIdentifierNamespace(), To->getIdentifierNamespace());
14001400
}
14011401

1402-
TEST_P(ASTImporterTestBase, DISABLED_IDNSOfNonmemberOperator) {
1402+
TEST_P(ASTImporterTestBase, IDNSOfNonmemberOperator) {
14031403
Decl *FromTU = getTuDecl(
14041404
R"(
14051405
struct X {};

0 commit comments

Comments
 (0)