Rename "MySolution" to "MyWorkspace" across tests

This commit is contained in:
Jason Perkins 2015-09-03 18:03:09 -04:00
parent c3d2e226a3
commit aa88ddab96
3 changed files with 4 additions and 4 deletions

View File

@ -52,9 +52,9 @@
--
function suite.expandsNestedTokens()
environ.wks = { name="MySolution%{'X'}" }
environ.wks = { name="MyWorkspace%{'X'}" }
x = detoken.expand("%{wks.name}", environ)
test.isequal("MySolutionX", x)
test.isequal("MyWorkspaceX", x)
end

View File

@ -72,7 +72,7 @@
function suite.worksWithWorkspace()
prepare()
test.isequal("MySolution", path.getname(p.filename(wks)))
test.isequal("MyWorkspace", path.getname(p.filename(wks)))
end

View File

@ -247,7 +247,7 @@
--
function test.createWorkspace()
local wks = workspace("MySolution")
local wks = workspace("MyWorkspace")
configurations { "Debug", "Release" }
local prj = project("MyProject")