Skip to content

Commit

Permalink
redundant expand removed from the example
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
  • Loading branch information
sustrik committed Apr 23, 2017
1 parent 7984db9 commit 6b272ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -119,7 +119,7 @@ var testsuite = {
}

var config = c.expand(testsuite)
console.log(JSON.stringify(c.expand(config), null, ' '))
console.log(JSON.stringify(config, null, ' '))
```

The result is cartesian product of all the boxes, compilers and tests. There's a lot of results, so let's have a look only at the first and the laster one:
Expand Down
2 changes: 1 addition & 1 deletion example.js
Expand Up @@ -82,5 +82,5 @@ var testsuite = {
}

var config = c.expand(testsuite)
console.log(JSON.stringify(c.expand(config), null, ' '))
console.log(JSON.stringify(config, null, ' '))

0 comments on commit 6b272ec

Please sign in to comment.