Skip to content

Commit

Permalink
no point notation for test on ds (to avoid warning if no data structu…
Browse files Browse the repository at this point in the history
…re loaded or changed)
  • Loading branch information
e-marchand committed Aug 2, 2023
1 parent ee6eeac commit fde1d3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Project/Sources/Methods/00_TESTS.4dm
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,13 @@ Case of
//________________________________________
: (False:C215) // Create themes

For each ($o; ds:C1482.Commands.all())
For each ($o; ds:C1482["Commands"].all())

$o2:=ds:C1482.Themes.query("Name = :1"; $o.themeName)
$o2:=ds:C1482["Themes"].query("Name = :1"; $o.themeName)

If ($o2.length=0)

$o1:=ds:C1482.Themes.new()
$o1:=ds:C1482["Themes"].new()
$o1.Name:=$o.themeName
$result:=$o1.save()

Expand Down

0 comments on commit fde1d3f

Please sign in to comment.