-
Notifications
You must be signed in to change notification settings - Fork 4k
Changed RemoteDebuggingVersion from string type to enum and added tests. #1837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
Set-AzureWebsite $name -Slot Production -SiteWithConfig $website | ||
Assert-AreEqual $true $website.RemoteDebuggingEnabled | ||
Assert-AreEqual $remotedebuggingversion $website.RemoteDebuggingVersion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please align indentation.
@haocs you will need to pull from upstream dev. On-Demand job failed due to the issue that is already fixed in dev. |
@hovsepm on-demand job passed http://azuresdkci.cloudapp.net/view/1-AzurePowerShell/job/powershell-demand/535/ |
@@ -63,7 +63,7 @@ public interface ISiteConfig | |||
|
|||
bool? RemoteDebuggingEnabled { get; set; } | |||
|
|||
RemoteDebuggingVersion RemoteDebuggingVersion { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the type "RemoteDebugginVersion" used anywhere stil? If not we should delete the type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It has string constants with the known values now, it's not used elsewhere or compilation would have failed.
Looks good. |
Approved |
Changed RemoteDebuggingVersion from string type to enum and added tests.
No description provided.