Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2016-05-12 22:19:01 +0000
committerRyan D. Brooks2016-08-31 16:16:51 +0000
commitba342e85f2fde7364034ee340de8d124623c30ad (patch)
treec1bef763bd2e352ccf9b4cb3cebafc4e941ac874 /plugins/org.eclipse.osee.ats.client.integration.tests
parentf5898036272a06d3ee50482ed7a3464238da2b33 (diff)
downloadorg.eclipse.osee-ba342e85f2fde7364034ee340de8d124623c30ad.tar.gz
org.eclipse.osee-ba342e85f2fde7364034ee340de8d124623c30ad.tar.xz
org.eclipse.osee-ba342e85f2fde7364034ee340de8d124623c30ad.zip
refactor: Base TransactionId on Id
Diffstat (limited to 'plugins/org.eclipse.osee.ats.client.integration.tests')
-rw-r--r--plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java
index f080c8adfef..f91b299c03e 100644
--- a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java
+++ b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java
@@ -97,7 +97,7 @@ public class AtsBranchServiceImplTest {
// clear versions to config item is from teamDef
teamDef.getVersions().clear();
//Test TxRecords
- TransactionRecord txRecord = new TransactionRecord(1234, SAW_Bld_1, "comment", new Date(),
+ TransactionRecord txRecord = new TransactionRecord(1234L, SAW_Bld_1, "comment", new Date(0),
UserManager.getUser().getArtId(), UserManager.getUser().getArtId(), TransactionDetailsType.Baselined);
Collection<TransactionToken> commitTxs = new ArrayList<>();
Collection<ICommitConfigItem> configArtSet = new HashSet<>();

Back to the top