@@ -31,7 +31,7 @@ Method TestDependencyGraphScopedDependency()
3131{
3232 do $$$AssertStatusOK(##class (%IPM.Utils.Module ).LoadModuleFromDirectory (..RepoPath _..#MODNAME), " Successfully loaded module from directory." )
3333 set module = ##class (%IPM.Storage.Module ).NameOpen (..#MODNAME,,.sc )
34- do $$$AssertStatusOK(sc , " Succcessfully opened module object." )
34+ do $$$AssertStatusOK(sc , " Successfully opened module object." )
3535
3636 // Expected dependencyGraph format: dependencyGraph(<module name>) = $listbuild(<depth>, <server>, <version>, <display name>, <scope>)
3737 set scopes = $listbuild (" test" , " verify" )
@@ -41,16 +41,16 @@ Method TestDependencyGraphScopedDependency()
4141 // Check non-scoped dependency
4242 do $$$AssertTrue($data (dependencyGraph (" module-b" )))
4343 set $listbuild (,,,,moduleBScope ) = dependencyGraph (" module-b" )
44- do $$$AssertEquals(moduleBScope , " " , " module-b scope succssfully checked to be empty." )
44+ do $$$AssertEquals(moduleBScope , " " , " module-b scope successfully checked to be empty." )
4545
4646 // Check scoped dependencies
4747 do $$$AssertTrue($data (dependencyGraph (" module-c" )))
4848 set $listbuild (,,,,moduleCScope ) = dependencyGraph (" module-c" )
49- do $$$AssertEquals(moduleCScope , " test" , " module-c scope succssfully checked to be 'test'." )
49+ do $$$AssertEquals(moduleCScope , " test" , " module-c scope successfully checked to be 'test'." )
5050
5151 do $$$AssertTrue($data (dependencyGraph (" module-d" )))
5252 set $listbuild (,,,,moduleDScope ) = dependencyGraph (" module-d" )
53- do $$$AssertEquals(moduleDScope , " verify" , " module-d scope succssfully checked to be 'verify'." )
53+ do $$$AssertEquals(moduleDScope , " verify" , " module-d scope successfully checked to be 'verify'." )
5454}
5555
5656}
0 commit comments