On this [line 428 in DSCConfiguration.Tests.ps1](https://github.com/PowerShell/DscConfiguration.Tests/blob/master/DSCConfiguration.Tests.ps1#L428) it reference `.PrivateData.PSData.WindowsOSversion`. ``` $OSVersion = (Import-PowerShellDataFile $env:BuildFolder\$ProjectModuleName\$ProjectModuleName.psd1).PrivateData.PSData.WindowsOSVersion ``` Instead I think is should be ``` $OSVersion = (Import-PowerShellDataFile $env:BuildFolder\$ProjectModuleName\$ProjectModuleName.psd1).PrivateData.WindowsOSVersion ```
On this line 428 in DSCConfiguration.Tests.ps1 it reference
.PrivateData.PSData.WindowsOSversion.Instead I think is should be