Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
vplauzon committed Oct 21, 2023
1 parent 85ae353 commit cba235d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,5 @@ private void TestRestrictedViewPolicy(IEnumerable<string> tableNames, bool areEn
Assert.Contains(name, observedNames);
}
}

private static string GetActualTableName(string tableName)
{
var actualTableName = tableName.Split('.').Last();

if (actualTableName.StartsWith('['))
{
return actualTableName.Substring(2, actualTableName.Length - 4);
}
else
{
return actualTableName;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,5 @@ private void TestRestrictedViewPolicy(string tableName, bool isEnabled)
actualTableName,
((AlterRestrictedViewPolicyCommand)command).TableName.Name);
}

private static string GetActualTableName(string tableName)
{
var actualTableName = tableName.Split('.').Last();

if (actualTableName.StartsWith('['))
{
return actualTableName.Substring(2, actualTableName.Length - 4);
}
else
{
return actualTableName;
}
}
}
}

0 comments on commit cba235d

Please sign in to comment.