aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpkid/tests/yamlconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/tests/yamlconf.py b/rpkid/tests/yamlconf.py
index 9fd210bf..34ae8ba0 100644
--- a/rpkid/tests/yamlconf.py
+++ b/rpkid/tests/yamlconf.py
@@ -494,7 +494,7 @@ class allocation(object):
username = config_overrides["irdbd_sql_username"]
password = config_overrides["irdbd_sql_password"]
cmd = ("mysqldump", "-u", username, "-p" + password, self.irdb_name)
- with open(self.path("irdb.sql"), "w") as f:
+ with open(self.path("irdbd.sql"), "w") as f:
print "Writing", f.name
subprocess.check_call(cmd, stdout = f)