1 |
commit: 54b1047b7b7844ce48d9f765e8fcf5cfd2effa46 |
2 |
Author: Michał Górny <mgorny <AT> gentoo <DOT> org> |
3 |
AuthorDate: Wed May 18 16:40:12 2011 +0000 |
4 |
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> |
5 |
CommitDate: Tue May 31 18:01:17 2011 +0000 |
6 |
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms-test-suite.git;a=commit;h=54b1047b |
7 |
|
8 |
Move ebuilds vars to a separate dict. |
9 |
|
10 |
--- |
11 |
basic/phase-function-order.py | 4 +++- |
12 |
1 files changed, 3 insertions(+), 1 deletions(-) |
13 |
|
14 |
diff --git a/basic/phase-function-order.py b/basic/phase-function-order.py |
15 |
index 59307f9..01e71c9 100644 |
16 |
--- a/basic/phase-function-order.py |
17 |
+++ b/basic/phase-function-order.py |
18 |
@@ -11,7 +11,9 @@ class EbuildTest(object): |
19 |
class PhaseFunctionOrderTest(EbuildTest): |
20 |
relevant_eapis = (0, 2, 4) |
21 |
|
22 |
- DESCRIPTION = 'Phase function execution order test' |
23 |
+ ebuild_vars = { |
24 |
+ 'DESCRIPTION': 'Phase function execution order test' |
25 |
+ } |
26 |
|
27 |
def __init__(self): |
28 |
for func in self.phase_funcs.keys(): |