summaryrefslogtreecommitdiffstats
path: root/tests/regress/issue72.py
diff options
context:
space:
mode:
authorgraham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2011-10-23 19:42:50 (EDT)
committer graham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2011-10-23 19:42:50 (EDT)
commitc08d3873c361e926eb69645a18a2ba82e6e29015 (patch)
tree644f00ecead2d25606fe793adb5ccbc14715c823 /tests/regress/issue72.py
parentc0c5f116ac39a3bc0cbec6ca55c0359062ad0d8f (diff)
Use a default Version and Architecture in the event that none is specified.
git-svn-id: http://opkg.googlecode.com/svn/trunk@632 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'tests/regress/issue72.py')
-rwxr-xr-xtests/regress/issue72.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regress/issue72.py b/tests/regress/issue72.py
index 3c71401..d0c511b 100755
--- a/tests/regress/issue72.py
+++ b/tests/regress/issue72.py
@@ -13,7 +13,7 @@ long_filename2 = long_dir + "/" + 110*"c"
os.mkdir(long_dir)
open(long_filename, "w").close()
os.symlink(long_b, long_filename2)
-a = opk.Opk(Package="a", Version="1.0", Architecture="all")
+a = opk.Opk(Package="a")
a.write(data_files=[long_dir, long_filename, long_filename2])
os.unlink(long_filename)
os.unlink(long_filename2)